coda: wrong order of arguments of ->readdir()

Shows how many people are testing coda - the bug had been there for 5 years
and results of stepping on it are not subtle.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
This commit is contained in:
Al Viro
2007-07-22 17:59:26 +02:00
committed by Adrian Bunk
parent b98f003bbc
commit 1b80f9a0d1
+1 -1
View File
@@ -469,7 +469,7 @@ int coda_readdir(struct file *coda_file, void *dirent, filldir_t filldir)
ret = -ENOENT;
if (!IS_DEADDIR(host_inode)) {
ret = host_file->f_op->readdir(host_file, filldir, dirent);
ret = host_file->f_op->readdir(host_file, dirent, filldir);
file_accessed(host_file);
}
}