[PATCH] don't pass nameidata to __ncp_lookup_validate()

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>

Al Viro 58ec42b0 a569c711

+2 -2
+2 -2
fs/ncpfs/dir.c
··· 266 266 267 267 268 268 static int 269 - __ncp_lookup_validate(struct dentry * dentry, struct nameidata *nd) 269 + __ncp_lookup_validate(struct dentry *dentry) 270 270 { 271 271 struct ncp_server *server; 272 272 struct dentry *parent; ··· 340 340 { 341 341 int res; 342 342 lock_kernel(); 343 - res = __ncp_lookup_validate(dentry, nd); 343 + res = __ncp_lookup_validate(dentry); 344 344 unlock_kernel(); 345 345 return res; 346 346 }