Changeset 454 for trunk/server/source3/smbd/vfs.c
- Timestamp:
- Jun 4, 2010, 3:11:43 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/smbd/vfs.c
r414 r454 716 716 return(0); 717 717 718 #ifdef __OS2__ 719 if ((*path == '/' || *path == '\\' || (*path && path[1] == ':')) && strcsequal(LastDir,path)) 720 #else 718 721 if (*path == '/' && strcsequal(LastDir,path)) 722 #endif 719 723 return(0); 720 724 … … 938 942 resolved_name)); 939 943 944 #ifdef __OS2__ 945 if (*resolved_name != '/' && *resolved_name != '\\' && (strlen(resolved_name) <= 1 || resolved_name[1] != ':')) { 946 #else 940 947 if (*resolved_name != '/') { 948 #endif 941 949 DEBUG(0,("check_reduced_name: realpath doesn't return " 942 950 "absolute paths !\n"));
Note:
See TracChangeset
for help on using the changeset viewer.