summaryrefslogtreecommitdiffstats
path: root/source/lib/system.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-09-12 21:48:20 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:30:41 -0500
commit7f0db75fb0f24873577dcb758a2ecee74fdc4297 (patch)
treeabf4c2870bace46fb7a271b3a9053b5664667b28 /source/lib/system.c
parent93c42fd9b52d9135d8c8b52e97cf342c1c5b5010 (diff)
downloadsamba-7f0db75fb0f24873577dcb758a2ecee74fdc4297.tar.gz
samba-7f0db75fb0f24873577dcb758a2ecee74fdc4297.tar.xz
samba-7f0db75fb0f24873577dcb758a2ecee74fdc4297.zip
r25117: The mega-patch Jerry was waiting for. Remove all pstrings from
the main server code paths. We should now be able to cope with paths up to PATH_MAX length now. Final job will be to add the TALLOC_CTX * parameter to unix_convert to make it explicit (for Volker). Jeremy.
Diffstat (limited to 'source/lib/system.c')
-rw-r--r--source/lib/system.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/lib/system.c b/source/lib/system.c
index 9cef818fab2..6c79b362a86 100644
--- a/source/lib/system.c
+++ b/source/lib/system.c
@@ -573,7 +573,11 @@ char *sys_getwd(char *s)
{
char *wd;
#ifdef HAVE_GETCWD
+#ifdef PATH_MAX
+ wd = (char *)getcwd(s, PATH_MAX);
+#else
wd = (char *)getcwd(s, sizeof (pstring));
+#endif
#else
wd = (char *)getwd(s);
#endif