Changeset 173
- Timestamp:
- Apr 14, 2009, 5:04:26 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/samba-3.0/source/smbd/dosmode.c ¶
r165 r173 235 235 #if defined(ENOTSUP) && defined(ENOATTR) 236 236 if ((errno != ENOTSUP) && (errno != ENOATTR) && (errno != EACCES) && (errno != EPERM)) { 237 #ifndef __OS2__ 237 238 DEBUG(1,("get_ea_dos_attributes: Cannot get attribute from EA on file %s: Error = %s\n", 238 239 path, strerror(errno) )); 240 #else 241 // HB On OS/2 no error in case of ./.. and errno == 2 242 if ((strncmp(path,"./..",4) != 0) || (errno != 2)) { 243 DEBUG(1,("get_ea_dos_attributes: Cannot get attribute from EA on file %s: Error = %s, nr = %d\n", 244 path, strerror(errno), errno )); 245 } 246 #endif 239 247 set_store_dos_attributes(SNUM(conn), False); 240 248 }
Note:
See TracChangeset
for help on using the changeset viewer.