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