summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortim <tim>2003-09-08 23:11:33 +0000
committertim <tim>2003-09-08 23:11:33 +0000
commite9716f6961dc2b083f57cf0ce67f04a2cf3deacc (patch)
tree4eb4a02244a4090ae0a546850b5a2cca4d48b78a
parentd3a82bde6e60699feda3872bda1ea07451d2e543 (diff)
downloadopenssh-e9716f6961dc2b083f57cf0ce67f04a2cf3deacc.tar.gz
[ssh-keygen.c] s/PATH_MAX/MAXPATHLEN/ ok mouring@
-rw-r--r--ChangeLog3
-rw-r--r--ssh-keygen.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0343f213..f352a38d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
_getlong in #ifndef
- (tim) [configure.ac acconfig.h openbsd-compat/getrrsetbyname.c] test for
HEADER.ad in arpa/nameser.h
+ - (tim) [ssh-keygen.c] s/PATH_MAX/MAXPATHLEN/ ok mouring@
20030907
- (dtucker) [agent-ptrace.sh dynamic-forward.sh (all regress/)]
@@ -1043,4 +1044,4 @@
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
-$Id: ChangeLog,v 1.2971 2003/09/08 21:35:16 tim Exp $
+$Id: ChangeLog,v 1.2972 2003/09/08 23:11:33 tim Exp $
diff --git a/ssh-keygen.c b/ssh-keygen.c
index dbc51473..e74d3cd3 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -795,7 +795,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;