diff options
author | Steve French <sfrench@us.ibm.com> | 2006-06-01 19:44:37 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2006-06-01 19:44:37 +0000 |
commit | 7a0d22317614ee8e2598feafd4812e33be17f421 (patch) | |
tree | d89e0b5578405528e004e015f2d2de7438be1b6f /fs/cifs | |
parent | 273d81d6ada951ba99f10b755d6f849dbb352730 (diff) | |
download | talos-obmc-linux-7a0d22317614ee8e2598feafd4812e33be17f421.tar.gz talos-obmc-linux-7a0d22317614ee8e2598feafd4812e33be17f421.zip |
[CIFS] Missing brace
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/cifssmb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c index eea8967e598e..b8c236be4d85 100644 --- a/fs/cifs/cifssmb.c +++ b/fs/cifs/cifssmb.c @@ -477,7 +477,7 @@ CIFSSMBNegotiate(unsigned int xid, struct cifsSesInfo *ses) cFYI(1,("LANMAN negotiated")); /* BB removeme BB */ #else /* weak security disabled */ - } else if(pSMBr->hdr.WordCount == 13) + } else if(pSMBr->hdr.WordCount == 13) { cERROR(1,("mount failed, cifs module not built " "with CIFS_WEAK_PW_HASH support")); rc = -EOPNOTSUPP; |