diff options
author | Steve French <sfrench@us.ibm.com> | 2006-04-23 03:54:50 +0200 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2006-04-23 03:54:50 +0200 |
commit | b66ac3ea21f81dea02cdb4e9de66ee6afdc540e4 (patch) | |
tree | 32185324f236df4640ee3d35097cb13a2726b586 | |
parent | [CIFS] Readdir fixes to allow search to start at arbitrary position (diff) | |
download | linux-b66ac3ea21f81dea02cdb4e9de66ee6afdc540e4.tar.xz linux-b66ac3ea21f81dea02cdb4e9de66ee6afdc540e4.zip |
[CIFS] Fix typo in previous
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to '')
-rw-r--r-- | fs/cifs/readdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/readdir.c b/fs/cifs/readdir.c index 41c022e3c132..b689c5035124 100644 --- a/fs/cifs/readdir.c +++ b/fs/cifs/readdir.c @@ -766,7 +766,7 @@ static int cifs_filldir(char *pfindEntry, struct file *file, if(file->f_dentry == NULL) return -ENOENT; - rc = cifs_entry_is_dot(pfindEntry,cifsF); + rc = cifs_entry_is_dot(pfindEntry,pCifsF); /* skip . and .. since we added them first */ if(rc != 0) return 0; |