diff options
author | Steve French <sfrench@us.ibm.com> | 2005-08-17 15:12:19 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2005-08-17 15:12:19 -0400 |
commit | a59c658607b63ec7b6c2536597a075ee307b1b4c (patch) | |
tree | e5217df2f7e4a2b3bce1ab8fff4816cc6cd4e964 /fs/cifs/cifssmb.c | |
parent | 68984aedabf2552aeb21b9ed232cb8f685444e3a (diff) |
[CIFS] Missing ; from previous fix. Pointed out by Shaggy.
Signed-off-by: Steve French
Diffstat (limited to 'fs/cifs/cifssmb.c')
-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 459320222cf7..1b073546f5d9 100644 --- a/fs/cifs/cifssmb.c +++ b/fs/cifs/cifssmb.c | |||
@@ -538,7 +538,7 @@ CIFSSMBLogoff(const int xid, struct cifsSesInfo *ses) | |||
538 | rc = -ESHUTDOWN; | 538 | rc = -ESHUTDOWN; |
539 | } | 539 | } |
540 | } | 540 | } |
541 | up(&ses->sesSem) | 541 | up(&ses->sesSem); |
542 | cifs_small_buf_release(pSMB); | 542 | cifs_small_buf_release(pSMB); |
543 | 543 | ||
544 | /* if session dead then we do not need to do ulogoff, | 544 | /* if session dead then we do not need to do ulogoff, |