]> andersk Git - openssh.git/commitdiff
- (bal) removed GNUism for getops in ssh-agent since glibc lacks optreset.
authormouring <mouring>
Sun, 23 Jun 2002 00:18:15 +0000 (00:18 +0000)
committermouring <mouring>
Sun, 23 Jun 2002 00:18:15 +0000 (00:18 +0000)
ChangeLog
ssh-agent.c

index 84d739f1ad2bd1d4782a3294e317ea9751044715..89fda8b2b41d7730137bdb8b7a05d083ae83e66b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
 20020623
  - (stevesk) [configure.ac] bug #255 LOGIN_NEEDS_UTMPX for AIX.
+ - (bal) removed GNUism for getops in ssh-agent since glibc lacks optreset.
 
 20020622
  - (djm) Update README.privsep; spotted by fries@
index c3a907798fab5fbcf0e02dace960b821b2ec25f2..72adf686c557f25589f45a8d2ca17a71e2a75ba0 100644 (file)
@@ -947,11 +947,7 @@ main(int ac, char **av)
        init_rng();
        seed_rng();
 
-#ifdef __GNU_LIBRARY__
-       while ((ch = getopt(ac, av, "+cdksa:")) != -1) {
-#else /* __GNU_LIBRARY__ */
        while ((ch = getopt(ac, av, "cdksa:")) != -1) {
-#endif /* __GNU_LIBRARY__ */
                switch (ch) {
                case 'c':
                        if (s_flag)
This page took 0.042118 seconds and 5 git commands to generate.