mirror of git://anongit.mindrot.org/openssh.git
- (bal) removed GNUism for getops in ssh-agent since glibc lacks optreset.
This commit is contained in:
parent
90d5de7670
commit
1a1b851775
|
@ -1,5 +1,6 @@
|
||||||
20020623
|
20020623
|
||||||
- (stevesk) [configure.ac] bug #255 LOGIN_NEEDS_UTMPX for AIX.
|
- (stevesk) [configure.ac] bug #255 LOGIN_NEEDS_UTMPX for AIX.
|
||||||
|
- (bal) removed GNUism for getops in ssh-agent since glibc lacks optreset.
|
||||||
|
|
||||||
20020622
|
20020622
|
||||||
- (djm) Update README.privsep; spotted by fries@
|
- (djm) Update README.privsep; spotted by fries@
|
||||||
|
@ -1009,4 +1010,4 @@
|
||||||
- (stevesk) entropy.c: typo in debug message
|
- (stevesk) entropy.c: typo in debug message
|
||||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2242 2002/06/22 18:51:48 stevesk Exp $
|
$Id: ChangeLog,v 1.2243 2002/06/23 00:18:15 mouring Exp $
|
||||||
|
|
|
@ -947,11 +947,7 @@ main(int ac, char **av)
|
||||||
init_rng();
|
init_rng();
|
||||||
seed_rng();
|
seed_rng();
|
||||||
|
|
||||||
#ifdef __GNU_LIBRARY__
|
|
||||||
while ((ch = getopt(ac, av, "+cdksa:")) != -1) {
|
|
||||||
#else /* __GNU_LIBRARY__ */
|
|
||||||
while ((ch = getopt(ac, av, "cdksa:")) != -1) {
|
while ((ch = getopt(ac, av, "cdksa:")) != -1) {
|
||||||
#endif /* __GNU_LIBRARY__ */
|
|
||||||
switch (ch) {
|
switch (ch) {
|
||||||
case 'c':
|
case 'c':
|
||||||
if (s_flag)
|
if (s_flag)
|
||||||
|
|
Loading…
Reference in New Issue