]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Fix copy-and-paste error in testbn main program.
authorSimon Tatham <anakin@pobox.com>
Sun, 13 Dec 2015 14:46:42 +0000 (14:46 +0000)
committerSimon Tatham <anakin@pobox.com>
Sun, 13 Dec 2015 14:46:42 +0000 (14:46 +0000)
I called a 'pow' test line 'mul' in an error message.

sshbn.c

diff --git a/sshbn.c b/sshbn.c
index 7aa1069709f774964aa1de309fcb9f3412d528ef..afc38a0bb2b5dfd056a50fae8483fa7dd020e6ba 100644 (file)
--- 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);
             }