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