diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2003-11-23 23:18:46 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2003-11-23 23:18:46 +0000 |
commit | 5a9bab25a289dc416634afbb936c3eb2f63816d4 (patch) | |
tree | c6ea8226495ef62d158586e38e0d2909363ec521 /usr.bin | |
parent | 489c33b24d7191ab5fbd9be8814a91a110e51d38 (diff) |
consistency PATH_MAX -> MAXPATHLEN; ok markus@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index 3c3ade59339..be8ef77e971 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keygen.c,v 1.111 2003/11/21 11:57:03 djm Exp $"); +RCSID("$OpenBSD: ssh-keygen.c,v 1.112 2003/11/23 23:18:45 djm Exp $"); #include <openssl/evp.h> #include <openssl/pem.h> @@ -785,7 +785,7 @@ int main(int ac, char **av) { char dotsshdir[MAXPATHLEN], comment[1024], *passphrase1, *passphrase2; - char out_file[PATH_MAX], *reader_id = NULL; + char out_file[MAXPATHLEN], *reader_id = NULL; char *resource_record_hostname = NULL; Key *private, *public; struct passwd *pw; |