- (djm) [ssh-rand-helper.c] declare optind, avoiding compilation failure
on some platforms
This commit is contained in:
parent
689b872842
commit
48b6021721
|
@ -22,6 +22,8 @@
|
||||||
imorgan AT nas.nasa.gov
|
imorgan AT nas.nasa.gov
|
||||||
- (tim) [ssh-pkcs11.c] Fix "non-constant initializer" errors in older
|
- (tim) [ssh-pkcs11.c] Fix "non-constant initializer" errors in older
|
||||||
compilers. OK djm@
|
compilers. OK djm@
|
||||||
|
- (djm) [ssh-rand-helper.c] declare optind, avoiding compilation failure
|
||||||
|
on some platforms
|
||||||
|
|
||||||
20100304
|
20100304
|
||||||
- (djm) [ssh-keygen.c] Use correct local variable, instead of
|
- (djm) [ssh-keygen.c] Use correct local variable, instead of
|
||||||
|
|
|
@ -818,6 +818,7 @@ main(int argc, char **argv)
|
||||||
unsigned char *buf;
|
unsigned char *buf;
|
||||||
int ret, ch, debug_level, output_hex, bytes;
|
int ret, ch, debug_level, output_hex, bytes;
|
||||||
extern char *optarg;
|
extern char *optarg;
|
||||||
|
extern int optind;
|
||||||
LogLevel ll;
|
LogLevel ll;
|
||||||
|
|
||||||
__progname = ssh_get_progname(argv[0]);
|
__progname = ssh_get_progname(argv[0]);
|
||||||
|
|
Loading…
Reference in New Issue