]> andersk Git - openssh.git/commitdiff
- Merged several minor fixed:
authordamien <damien>
Wed, 10 Nov 1999 01:48:08 +0000 (01:48 +0000)
committerdamien <damien>
Wed, 10 Nov 1999 01:48:08 +0000 (01:48 +0000)
   - ssh-agent commandline parsing
   - RPM spec file now installs ssh setuid root
   - Makefile creates libdir

ChangeLog
Makefile.in
openssh.spec
ssh-agent.c

index df11b662ae70a3fa11569ec3672c8661fa0c8f7a..047c5b70b37ab2d4e1d1f9588c38e26fddcd914b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+19991110
+ - Merged several minor fixed:
+   - ssh-agent commandline parsing
+   - RPM spec file now installs ssh setuid root
+   - Makefile creates libdir
+
 19991109
  - Autodetection of SSL/Crypto library location via autoconf
  - Fixed location of ssh-askpass to follow autoconf
index e76d74158b1cf93bc5de6a3e6382ebe51012e640..0d239e8824f6826be6f4b3ce881ebeee512ad7e3 100644 (file)
@@ -64,6 +64,7 @@ install: all
        install -d $(mandir)
        install -d $(mandir)/man1
        install -d $(mandir)/man8
+       install -d $(libdir)
        install -d $(libdir)/ssh
        install -s -c ssh $(bindir)/ssh
        ln -sf ssh $(bindir)/slogin
index 113a90cfacbf0d6aca33bc697b3ccbfee887eede..dc063e94281931854304a599d508135994929f80 100644 (file)
@@ -124,18 +124,18 @@ fi
 %defattr(-,root,root)
 %doc COPYING.Ylonen ChangeLog ChangeLog.Ylonen OVERVIEW 
 %doc README README.Ylonen
-%attr(0755,root,root) /usr/bin/ssh
+%attr(4755,root,root) /usr/bin/ssh
 %attr(0755,root,root) /usr/bin/ssh-agent
 %attr(0755,root,root) /usr/bin/ssh-keygen
 %attr(0755,root,root) /usr/bin/ssh-add
 %attr(0755,root,root) /usr/bin/scp
-%attr(0755,root,root) /usr/bin/slogin
+%attr(-,root,root) /usr/bin/slogin
 %attr(0644,root,root) /usr/man/man1/ssh.1
 %attr(0644,root,root) /usr/man/man1/ssh-agent.1
 %attr(0644,root,root) /usr/man/man1/ssh-keygen.1
 %attr(0644,root,root) /usr/man/man1/ssh-add.1
 %attr(0644,root,root) /usr/man/man1/scp.1
-%attr(0644,root,root) /usr/man/man1/slogin.1
+%attr(-,root,root) /usr/man/man1/slogin.1
 %attr(0644,root,root) %config /etc/ssh/ssh_config
 
 %files server
index 96bd021eb1010dca99f1f0bbfe5715b361064359..7f4543e92eb5c0480a60ccff0899588ad67d77be 100644 (file)
@@ -531,7 +531,11 @@ main(int ac, char **av)
     exit(1);
   }
 
+#if defined(__GNU_LIBRARY__)
+  while ((ch = getopt(ac, av, "+cks")) != -1)
+#else 
   while ((ch = getopt(ac, av, "cks")) != -1)
+#endif /* defined(__GNU_LIBRARY__) */
     {
       switch (ch)
        {
This page took 0.043535 seconds and 5 git commands to generate.