From: Simon Tatham Date: Sun, 13 Dec 2015 14:46:42 +0000 (+0000) Subject: Fix copy-and-paste error in testbn main program. X-Git-Tag: 0.68~302 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;ds=sidebyside;h=90c7b1562ce540d38f688492543467cc4dfa983c;p=PuTTY.git Fix copy-and-paste error in testbn main program. I called a 'pow' test line 'mul' in an error message. --- diff --git a/sshbn.c b/sshbn.c index 7aa10697..afc38a0b 100644 --- a/sshbn.c +++ b/sshbn.c @@ -2025,7 +2025,7 @@ int main(int argc, char **argv) Bignum base, expt, modulus, expected, answer; if (ptrnum != 4) { - printf("%d: mul with %d parameters, expected 4\n", line, ptrnum); + printf("%d: pow with %d parameters, expected 4\n", line, ptrnum); exit(1); }