summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--ssh-rand-helper.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7b50de5d3..ee1804fd8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -22,6 +22,8 @@
22 imorgan AT nas.nasa.gov 22 imorgan AT nas.nasa.gov
23 - (tim) [ssh-pkcs11.c] Fix "non-constant initializer" errors in older 23 - (tim) [ssh-pkcs11.c] Fix "non-constant initializer" errors in older
24 compilers. OK djm@ 24 compilers. OK djm@
25 - (djm) [ssh-rand-helper.c] declare optind, avoiding compilation failure
26 on some platforms
25 27
2620100304 2820100304
27 - (djm) [ssh-keygen.c] Use correct local variable, instead of 29 - (djm) [ssh-keygen.c] Use correct local variable, instead of
diff --git a/ssh-rand-helper.c b/ssh-rand-helper.c
index 0fcda7fff..fa5070499 100644
--- a/ssh-rand-helper.c
+++ b/ssh-rand-helper.c
@@ -818,6 +818,7 @@ main(int argc, char **argv)
818 unsigned char *buf; 818 unsigned char *buf;
819 int ret, ch, debug_level, output_hex, bytes; 819 int ret, ch, debug_level, output_hex, bytes;
820 extern char *optarg; 820 extern char *optarg;
821 extern int optind;
821 LogLevel ll; 822 LogLevel ll;
822 823
823 __progname = ssh_get_progname(argv[0]); 824 __progname = ssh_get_progname(argv[0]);