]> andersk Git - openssh.git/blobdiff - ssh.c
- (djm) Added --with-cflags, --with-ldflags and --with-libs options to
[openssh.git] / ssh.c
diff --git a/ssh.c b/ssh.c
index 97c0de7b93ac3c04ff46a9c1f8d4682385d35b9e..7b9ed7a239db61b03c00152db516b5bee62a3c49 100644 (file)
--- a/ssh.c
+++ b/ssh.c
@@ -116,6 +116,7 @@ usage()
        fprintf(stderr, "Options:\n");
        fprintf(stderr, "  -l user     Log in using this user name.\n");
        fprintf(stderr, "  -n          Redirect input from /dev/null.\n");
+       fprintf(stderr, "  -A          Enable authentication agent forwarding.\n");
        fprintf(stderr, "  -a          Disable authentication agent forwarding.\n");
 #ifdef AFS
        fprintf(stderr, "  -k          Disable Kerberos ticket and AFS token forwarding.\n");
@@ -315,6 +316,9 @@ main(int ac, char **av)
                case 'a':
                        options.forward_agent = 0;
                        break;
+               case 'A':
+                       options.forward_agent = 1;
+                       break;
 #ifdef AFS
                case 'k':
                        options.kerberos_tgt_passing = 0;
@@ -435,7 +439,7 @@ main(int ac, char **av)
        buffer_init(&command);
 
        OpenSSL_add_all_algorithms();
-       
+
        /*
         * Save the command to execute on the remote host in a buffer. There
         * is no limit on the length of the command, except by the maximum
This page took 0.033658 seconds and 4 git commands to generate.