diff options
author | Dug Song <dugsong@cvs.openbsd.org> | 1999-09-29 18:16:24 +0000 |
---|---|---|
committer | Dug Song <dugsong@cvs.openbsd.org> | 1999-09-29 18:16:24 +0000 |
commit | 18b0e3d63d164640aae60cdba4b8171c56a9e1f1 (patch) | |
tree | c6a16fe7937f965dd34829c6c0effc5b80c2ba77 /usr.bin/ssh/rsa.c | |
parent | 0d39821d0d77161333749fc800238b94cde1aef0 (diff) |
update krb4/AFS support to ssh-1.2.27-afs-kerberos-pl1 level, clean up unused variables, update manpages
Diffstat (limited to 'usr.bin/ssh/rsa.c')
-rw-r--r-- | usr.bin/ssh/rsa.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/ssh/rsa.c b/usr.bin/ssh/rsa.c index 2b3d565ac33..ac219a5b4e3 100644 --- a/usr.bin/ssh/rsa.c +++ b/usr.bin/ssh/rsa.c @@ -35,7 +35,7 @@ Description of the RSA algorithm can be found e.g. from the following sources: */ #include "includes.h" -RCSID("$Id: rsa.c,v 1.2 1999/09/29 06:15:00 deraadt Exp $"); +RCSID("$Id: rsa.c,v 1.3 1999/09/29 18:16:20 dugsong Exp $"); #include "rsa.h" #include "ssh.h" @@ -47,7 +47,6 @@ int rsa_alive() { RSA *key; - extern char *__progname; key = RSA_generate_key(32, 3, NULL, NULL); if (key == NULL) |