summaryrefslogtreecommitdiff
path: root/ssh-agent.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-23 00:18:15 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-23 00:18:15 +0000
commit1a1b85177580970e99095b7a3af67c06c6476caa (patch)
tree9bb45d7d7c84251ac188bb5f7a08d9199b28ab13 /ssh-agent.c
parent90d5de76701b51cef2dafb8e9cf7afe724d020c5 (diff)
- (bal) removed GNUism for getops in ssh-agent since glibc lacks optreset.
Diffstat (limited to 'ssh-agent.c')
-rw-r--r--ssh-agent.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ssh-agent.c b/ssh-agent.c
index c3a907798..72adf686c 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -947,11 +947,7 @@ main(int ac, char **av)
947 init_rng(); 947 init_rng();
948 seed_rng(); 948 seed_rng();
949 949
950#ifdef __GNU_LIBRARY__
951 while ((ch = getopt(ac, av, "+cdksa:")) != -1) {
952#else /* __GNU_LIBRARY__ */
953 while ((ch = getopt(ac, av, "cdksa:")) != -1) { 950 while ((ch = getopt(ac, av, "cdksa:")) != -1) {
954#endif /* __GNU_LIBRARY__ */
955 switch (ch) { 951 switch (ch) {
956 case 'c': 952 case 'c':
957 if (s_flag) 953 if (s_flag)