summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-06-19 11:50:08 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-06-19 11:50:08 +0000
commit891dffb52848563a1ad45c259ae69c895d599485 (patch)
tree2008cd6a77c073d5c318007ee276f67e29c0921b
parentf0b361ecc16b124813cb494e9d193abd442c1be0 (diff)
downloadgnurl-891dffb52848563a1ad45c259ae69c895d599485.tar.gz
gnurl-891dffb52848563a1ad45c259ae69c895d599485.tar.bz2
gnurl-891dffb52848563a1ad45c259ae69c895d599485.zip
extra precaution to make PATH_MAX always be defined
-rw-r--r--lib/ssh.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ssh.c b/lib/ssh.c
index 108c0156a..6d3b5f0a8 100644
--- a/lib/ssh.c
+++ b/lib/ssh.c
@@ -118,6 +118,11 @@
#include "memdebug.h"
#endif
+#ifndef PATH_MAX
+#define PATH_MAX 1024 /* just an extra precaution since there are systems that
+ have their definition hidden well */
+#endif
+
#ifndef LIBSSH2_SFTP_S_IRUSR
/* Here's a work-around for those of you who happend to run a libssh2 version
that is 0.14 or older. We should remove this kludge as soon as we can