]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2002/04/02 11:49:39
authormouring <mouring>
Tue, 2 Apr 2002 21:03:51 +0000 (21:03 +0000)
committermouring <mouring>
Tue, 2 Apr 2002 21:03:51 +0000 (21:03 +0000)
     [ssh-agent.c]
     check $SHELL for -k and -d, too;
     http://bugzilla.mindrot.org/show_bug.cgi?id=199

ChangeLog
ssh-agent.c

index e4d01d770e68c24b5c5b728c67e7c685565eb4dd..b8579c2eb8eec308522786ae531865e59cb35c0f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
    - markus@cvs.openbsd.org 2002/04/01 22:07:17
      [sftp-client.c]
      fallback to stat if server does not support lstat
+   - markus@cvs.openbsd.org 2002/04/02 11:49:39
+     [ssh-agent.c]
+     check $SHELL for -k and -d, too;
+     http://bugzilla.mindrot.org/show_bug.cgi?id=199
 
 20020401
  - (stevesk) [monitor.c] PAM should work again; will *not* work with
index f8183b40032eb73f41c0f03115f4f7ca4dd142e3..ccce33c3cd58d81d1abfca2db28ca6dff3e3b993 100644 (file)
@@ -34,7 +34,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: ssh-agent.c,v 1.84 2002/03/25 17:34:27 markus Exp $");
+RCSID("$OpenBSD: ssh-agent.c,v 1.85 2002/04/02 11:49:39 markus Exp $");
 
 #if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H)
 #include <sys/queue.h>
@@ -867,7 +867,7 @@ main(int ac, char **av)
        if (ac > 0 && (c_flag || k_flag || s_flag || d_flag))
                usage();
 
-       if (ac == 0 && !c_flag && !k_flag && !s_flag && !d_flag) {
+       if (ac == 0 && !c_flag && !s_flag) {
                shell = getenv("SHELL");
                if (shell != NULL && strncmp(shell + strlen(shell) - 3, "csh", 3) == 0)
                        c_flag = 1;
This page took 0.06216 seconds and 5 git commands to generate.