From 90c7b1562ce540d38f688492543467cc4dfa983c Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 13 Dec 2015 14:46:42 +0000 Subject: [PATCH] Fix copy-and-paste error in testbn main program. I called a 'pow' test line 'mul' in an error message. --- sshbn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.45.2