aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnna Schumaker <bjschuma@netapp.com>2013-09-25 17:02:48 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2013-09-29 16:03:34 -0400
commit367156d9a87b21b5232dd93107c5fc61b09ba2ef (patch)
treead6f22882edf05fc9712a9cea8ab865c1dcc49b7
parentNFSv4.1: try SECINFO_NO_NAME flavs until one works (diff)
downloadlinux-dev-367156d9a87b21b5232dd93107c5fc61b09ba2ef.tar.xz
linux-dev-367156d9a87b21b5232dd93107c5fc61b09ba2ef.zip
NFS: Give "flavor" an initial value to fix a compile warning
The previous patch introduces a compile warning by not assigning an initial value to the "flavor" variable. This could only be a problem if the server returns a supported secflavor list of length zero, but it's better to fix this before it's ever hit. Signed-off-by: Anna Schumaker <bjschuma@netapp.com> Acked-by: Weston Andros Adamson <dros@netapp.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
-rw-r--r--fs/nfs/nfs4proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
index f5fe16bd426c..d53d6785cba2 100644
--- a/fs/nfs/nfs4proc.c
+++ b/fs/nfs/nfs4proc.c
@@ -7576,7 +7576,7 @@ nfs41_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
{
int err;
struct page *page;
- rpc_authflavor_t flavor;
+ rpc_authflavor_t flavor = RPC_AUTH_MAXFLAVOR;
struct nfs4_secinfo_flavors *flavors;
struct nfs4_secinfo4 *secinfo;
int i;