Changeset 223 for branches/samba-3.3.x/source/smbd/reply.c
- Timestamp:
- May 24, 2009, 7:51:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/smbd/reply.c
r222 r223 77 77 } 78 78 79 if (! stream_started && *s == ':') {79 if (!posix_path && !stream_started && *s == ':') { 80 80 if (*p_last_component_contains_wcard) { 81 81 return NT_STATUS_OBJECT_NAME_INVALID; 82 82 } 83 /* stream names allow more characters than file names */ 83 /* Stream names allow more characters than file names. 84 We're overloading posix_path here to allow a wider 85 range of characters. If stream_started is true this 86 is still a Windows path even if posix_path is true. 87 JRA. 88 */ 84 89 stream_started = true; 85 90 start_of_name_component = false;
Note:
See TracChangeset
for help on using the changeset viewer.