Commit 9294acab authored by Jeremy Allison's avatar Jeremy Allison Committed by Gerald (Jerry) Carter
Browse files

r483: Fix typo of appending '\\' instead of '/' now we're using

check_path_syntax.
Jeremy.
(This used to be commit 50ce579322ae394cb7c7a27e06f4ff08499b77b3)
parent 34facd7e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -692,7 +692,7 @@ create_options = 0x%x root_dir_fid = 0x%x\n", flags, desired_access, file_attrib
		 */

		if(fname[dir_name_len-1] != '\\' && fname[dir_name_len-1] != '/') {
			pstrcat(fname, "\\");
			pstrcat(fname, "/");
			dir_name_len++;
		}

@@ -1243,7 +1243,7 @@ static int call_nt_transact_create(connection_struct *conn, char *inbuf, char *o
		 */

		if((fname[dir_name_len-1] != '\\') && (fname[dir_name_len-1] != '/')) {
			pstrcat(fname, "\\");
			pstrcat(fname, "/");
			dir_name_len++;
		}