From: tim Date: Mon, 8 Sep 2003 23:11:33 +0000 (+0000) Subject: [ssh-keygen.c] s/PATH_MAX/MAXPATHLEN/ ok mouring@ X-Git-Tag: V_3_7_P1~28 X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/commitdiff_plain/8f52069e3629d1a44e0ffb877b5e2147a6a35833 [ssh-keygen.c] s/PATH_MAX/MAXPATHLEN/ ok mouring@ --- diff --git a/ChangeLog b/ChangeLog index 16e97eda..6f7c616a 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/)] 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;