diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-01-20 17:34:26 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-01-20 17:34:26 +0000 |
commit | 8eba85d63d24480792e935853b44e892066f0998 (patch) | |
tree | 1999ca1c5f00a245b7d7d0f3ee6b1af27ce2cfb9 /usr.bin | |
parent | 262421925ebd1030ff488e67395f295dc82ae8f4 (diff) |
typo
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/auth-rsa.c | 4 | ||||
-rw-r--r-- | usr.bin/ssh/auth2.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/auth-rsa.c b/usr.bin/ssh/auth-rsa.c index 5037b796e3d..dc39995a7b3 100644 --- a/usr.bin/ssh/auth-rsa.c +++ b/usr.bin/ssh/auth-rsa.c @@ -14,7 +14,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth-rsa.c,v 1.36 2001/01/20 15:55:20 markus Exp $"); +RCSID("$OpenBSD: auth-rsa.c,v 1.37 2001/01/20 17:34:25 markus Exp $"); #include "rsa.h" #include "packet.h" @@ -122,7 +122,7 @@ auth_rsa_challenge_dialog(RSA *pk) int auth_rsa(struct passwd *pw, BIGNUM *client_n) { - char line[8192], file[MAXPATHNAME]; + char line[8192], file[MAXPATHLEN]; int authenticated; u_int bits; FILE *f; diff --git a/usr.bin/ssh/auth2.c b/usr.bin/ssh/auth2.c index a31fee485d0..52cee38f9b6 100644 --- a/usr.bin/ssh/auth2.c +++ b/usr.bin/ssh/auth2.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth2.c,v 1.30 2001/01/20 15:55:20 markus Exp $"); +RCSID("$OpenBSD: auth2.c,v 1.31 2001/01/20 17:34:25 markus Exp $"); #include <openssl/dsa.h> #include <openssl/rsa.h> @@ -515,7 +515,7 @@ authmethod_lookup(const char *name) int user_key_allowed(struct passwd *pw, Key *key) { - char line[8192], file[MAXPATHNAME]; + char line[8192], file[MAXPATHLEN]; int found_key = 0; FILE *f; u_long linenum = 0; |