summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh.c
diff options
context:
space:
mode:
authorNiels Provos <provos@cvs.openbsd.org>1999-09-30 14:05:42 +0000
committerNiels Provos <provos@cvs.openbsd.org>1999-09-30 14:05:42 +0000
commit8e65edaf5619f2b4cb4cf480f414533e9aeeba5f (patch)
treefcc5a5270135344fb196fe55e573c77b73e14d6c /usr.bin/ssh/ssh.c
parentdcd0c1975c714f780fcd9e3a06817810e235ae88 (diff)
remove ``none''.
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r--usr.bin/ssh/ssh.c15
1 files changed, 4 insertions, 11 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c
index 2a1036a039e..6f12dd311d3 100644
--- a/usr.bin/ssh/ssh.c
+++ b/usr.bin/ssh/ssh.c
@@ -18,7 +18,7 @@ Modified to work with SSL by Niels Provos <provos@citi.umich.edu> in Canada.
*/
#include "includes.h"
-RCSID("$Id: ssh.c,v 1.18 1999/09/30 05:53:04 deraadt Exp $");
+RCSID("$Id: ssh.c,v 1.19 1999/09/30 14:05:41 provos Exp $");
#include "xmalloc.h"
#include "ssh.h"
@@ -100,16 +100,9 @@ usage()
fprintf(stderr, " -f Fork into background after authentication.\n");
fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
- fprintf(stderr, " -c cipher Select encryption algorithm: ");
- for (i = 1; i <= 6; i++)
- {
- const char *t = cipher_name(i);
- if (t[0] == 'n' && t[1] == 'o' && t[2] == ' ')
- continue;
- fprintf(stderr, "%s, ", t);
- }
- fprintf(stderr, "or none.\n");
-
+ fprintf(stderr, " -c cipher Select encryption algorithm: "
+ "``3des'', "
+ "``blowfish''\n");
fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");