diff options
Diffstat (limited to 'ssh-agent.c')
-rw-r--r-- | ssh-agent.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index 96bd021eb..7f4543e92 100644 --- a/ssh-agent.c +++ b/ssh-agent.c | |||
@@ -531,7 +531,11 @@ main(int ac, char **av) | |||
531 | exit(1); | 531 | exit(1); |
532 | } | 532 | } |
533 | 533 | ||
534 | #if defined(__GNU_LIBRARY__) | ||
535 | while ((ch = getopt(ac, av, "+cks")) != -1) | ||
536 | #else | ||
534 | while ((ch = getopt(ac, av, "cks")) != -1) | 537 | while ((ch = getopt(ac, av, "cks")) != -1) |
538 | #endif /* defined(__GNU_LIBRARY__) */ | ||
535 | { | 539 | { |
536 | switch (ch) | 540 | switch (ch) |
537 | { | 541 | { |