Changeset 223 for branches/samba-3.3.x/source/smbd/dosmode.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/dosmode.c
r206 r223 336 336 p = path; 337 337 } 338 339 if (p[0] == '.' && p[1] != '.' && p[1] != 0) { 338 339 /* Only . and .. are not hidden. */ 340 if (p[0] == '.' && !((p[1] == '\0') || 341 (p[1] == '.' && p[2] == '\0'))) { 340 342 result |= aHIDDEN; 341 343 } … … 388 390 p = path; 389 391 } 390 391 if (p[0] == '.' && p[1] != '.' && p[1] != 0) { 392 393 /* Only . and .. are not hidden. */ 394 if (p[0] == '.' && !((p[1] == '\0') || 395 (p[1] == '.' && p[2] == '\0'))) { 392 396 result |= aHIDDEN; 393 397 }
Note:
See TracChangeset
for help on using the changeset viewer.