Re: [PATCH] Fix missing braces in ncpfs:ncp_lookup

From: Joe Perches
Date: Thu Sep 05 2013 - 00:17:42 EST


(adding Petr Vandrovec to cc's)

> diff --git a/fs/ncpfs/dir.c b/fs/ncpfs/dir.c
[]
> @@ -857,10 +857,11 @@ static struct dentry *ncp_lookup(struct inode *dir, struct dentry *dentry, unsig
> if (ncp_is_server_root(dir)) {
> res = ncp_io2vol(server, __name, &len, dentry->d_name.name,
> dentry->d_name.len, 1);
> - if (!res)
> + if (!res) {
> res = ncp_lookup_volume(server, __name, &(finfo.i));
> if (!res)
> ncp_update_known_namespace(server, finfo.i.volNumber, NULL);
> + }



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/