summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-09-25 03:52:29 +0000
committerAndrew Tridgell <tridge@samba.org>1998-09-25 03:52:29 +0000
commit0a69e091a2ec75bce89760d69ea1488941108740 (patch)
treeaad22d9b8dcdcde7fb8c8b6a756f9d924fa8b9fa
parent32b6f6640d45b083ce35a8c11b1e6f23c19df62c (diff)
downloadsamba-0a69e091a2ec75bce89760d69ea1488941108740.tar.gz
samba-0a69e091a2ec75bce89760d69ea1488941108740.tar.xz
samba-0a69e091a2ec75bce89760d69ea1488941108740.zip
I've disabled the conversion of null filenames to "." until we solve
the win95 printing problem. I suspect it is a smbgetatr() problem with a null name (which requires special behaviour). This is an interim solution.
-rw-r--r--source/smbd/filename.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/smbd/filename.c b/source/smbd/filename.c
index 7cbb3392cb7..685725f0961 100644
--- a/source/smbd/filename.c
+++ b/source/smbd/filename.c
@@ -366,6 +366,8 @@ BOOL unix_convert(char *name,connection_struct *conn,char *saved_last_component,
trim_string(name,"/","/");
+ /* I've disabled this till we fix printing (probably a getatr problem) (tridge) */
+#if TRIM_NULL_NAMES
/*
* If we trimmed down to a single '\0' character
* then we should use the "." directory to avoid
@@ -376,6 +378,7 @@ BOOL unix_convert(char *name,connection_struct *conn,char *saved_last_component,
name[0] = '.';
name[1] = '\0';
}
+#endif
/*
* Ensure saved_last_component is valid even if file exists.