diff options
author | James Peach <jpeach@samba.org> | 2006-04-24 02:36:55 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:04:15 -0500 |
commit | cdae64b18c46926f32ecee71896e60b66228e8b0 (patch) | |
tree | 2661214539222d732d9f88d9e5b802ebf29857c5 /source4/ntvfs/posix | |
parent | 7baa8a13aa751e2a1de287d43de0884ea638f04e (diff) | |
download | samba-cdae64b18c46926f32ecee71896e60b66228e8b0.tar.gz samba-cdae64b18c46926f32ecee71896e60b66228e8b0.tar.bz2 samba-cdae64b18c46926f32ecee71896e60b66228e8b0.zip |
r15189: Add parentheses to force ISDOt and ISDOTDOT evaluation order. Fix typo
that made the BASE-DIR2 test fail.
(This used to be commit dcebc59a987b3c0d8379912d0451dedb9e895451)
Diffstat (limited to 'source4/ntvfs/posix')
-rw-r--r-- | source4/ntvfs/posix/pvfs_dirlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/posix/pvfs_dirlist.c b/source4/ntvfs/posix/pvfs_dirlist.c index a3eaca3cbb..517f5b68d0 100644 --- a/source4/ntvfs/posix/pvfs_dirlist.c +++ b/source4/ntvfs/posix/pvfs_dirlist.c @@ -218,7 +218,7 @@ const char *pvfs_list_next(struct pvfs_dir *dir, uint_t *ofs) while ((de = readdir(dir->dir))) { const char *dname = de->d_name; - if (ISDOT(dname) || ISDOT(dname)) { + if (ISDOT(dname) || ISDOTDOT(dname)) { continue; } |