summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-23 00:20:50 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-23 00:20:50 +0000
commit883844dc078ecd09f9b186059fca0e0ee836be06 (patch)
tree70344e5f3422ed6b9c1ffe7be33c34ed9f30e168
parent1a1b85177580970e99095b7a3af67c06c6476caa (diff)
- (bal) add extern char *getopt. Based on report by dtucker@zip.com.au
-rw-r--r--ChangeLog3
-rw-r--r--ssh-agent.c1
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f6b03bcc1..a66fa6a47 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
120020623 120020623
2 - (stevesk) [configure.ac] bug #255 LOGIN_NEEDS_UTMPX for AIX. 2 - (stevesk) [configure.ac] bug #255 LOGIN_NEEDS_UTMPX for AIX.
3 - (bal) removed GNUism for getops in ssh-agent since glibc lacks optreset. 3 - (bal) removed GNUism for getops in ssh-agent since glibc lacks optreset.
4 - (bal) add extern char *getopt. Based on report by dtucker@zip.com.au
4 5
520020622 620020622
6 - (djm) Update README.privsep; spotted by fries@ 7 - (djm) Update README.privsep; spotted by fries@
@@ -1010,4 +1011,4 @@
1010 - (stevesk) entropy.c: typo in debug message 1011 - (stevesk) entropy.c: typo in debug message
1011 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 1012 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
1012 1013
1013$Id: ChangeLog,v 1.2243 2002/06/23 00:18:15 mouring Exp $ 1014$Id: ChangeLog,v 1.2244 2002/06/23 00:20:50 mouring Exp $
diff --git a/ssh-agent.c b/ssh-agent.c
index 72adf686c..92ce16a9f 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -939,6 +939,7 @@ main(int ac, char **av)
939 char *shell, *format, *pidstr, pidstrbuf[1 + 3 * sizeof pid]; 939 char *shell, *format, *pidstr, pidstrbuf[1 + 3 * sizeof pid];
940 char *agentsocket = NULL; 940 char *agentsocket = NULL;
941 extern int optind; 941 extern int optind;
942 extern char *optarg;
942 fd_set *readsetp = NULL, *writesetp = NULL; 943 fd_set *readsetp = NULL, *writesetp = NULL;
943 944
944 SSLeay_add_all_algorithms(); 945 SSLeay_add_all_algorithms();