[SCM] Samba Shared Repository - branch v3-4-test updated - release-4-0-0alpha7-528-g8d8c25a

Jeremy Allison jra at samba.org
Thu Mar 19 03:03:14 GMT 2009


The branch, v3-4-test has been updated
       via  8d8c25a34241c1b4a1d40d7ad02bd1e1baa605be (commit)
      from  a398deb3fe71a6c4c237b1f64dd7bbb8cb6bfa28 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-4-test


- Log -----------------------------------------------------------------
commit 8d8c25a34241c1b4a1d40d7ad02bd1e1baa605be
Author: Jeremy Allison <jra at samba.org>
Date:   Wed Mar 18 20:00:28 2009 -0700

    Fix bug #6196 - Unable to serve files with colons to Linux CIFS/VFS client
    Looks like the pathname parsing for POSIX paths got
    broken when the code for doing Windows streams parsing got added.
    Jeremy.

-----------------------------------------------------------------------

Summary of changes:
 source3/smbd/reply.c |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c
index a743385..8b560bd 100644
--- a/source3/smbd/reply.c
+++ b/source3/smbd/reply.c
@@ -72,11 +72,16 @@ static NTSTATUS check_path_syntax_internal(char *path,
 			}
 		}
 
-		if (!stream_started && *s == ':') {
+		if (!posix_path && !stream_started && *s == ':') {
 			if (*p_last_component_contains_wcard) {
 				return NT_STATUS_OBJECT_NAME_INVALID;
 			}
-			/* stream names allow more characters than file names */
+			/* Stream names allow more characters than file names.
+			   We're overloading posix_path here to allow a wider
+			   range of characters. If stream_started is true this
+			   is still a Windows path even if posix_path is true.
+			   JRA.
+			*/
 			stream_started = true;
 			start_of_name_component = false;
 			posix_path = true;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list