aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/connect.c
diff options
context:
space:
mode:
authorSteve French <sfrench@us.ibm.com>2006-05-30 14:08:26 -0400
committerSteve French <sfrench@us.ibm.com>2006-05-30 14:08:26 -0400
commit08775834c412c48f3539ef7ed073fff58e3cf419 (patch)
treeefa1a6b41e8d0017f7bcf2352f935b700286e876 /fs/cifs/connect.c
parentcec6815a12edc91b123394f29d672cb9fa6cf79f (diff)
[CIFS] Fix typos in previous fix
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/connect.c')
-rw-r--r--fs/cifs/connect.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
index f6ffb5bd29f7..bae1479318d1 100644
--- a/fs/cifs/connect.c
+++ b/fs/cifs/connect.c
@@ -2490,7 +2490,7 @@ CIFSSpnegoSessSetup(unsigned int xid, struct cifsSesInfo *ses,
2490 } /* else no more room so create dummy domain string */ 2490 } /* else no more room so create dummy domain string */
2491 else { 2491 else {
2492 if(ses->serverDomain) 2492 if(ses->serverDomain)
2493 ` kfree(ses->serverDomain); 2493 kfree(ses->serverDomain);
2494 ses->serverDomain = 2494 ses->serverDomain =
2495 kzalloc(2,GFP_KERNEL); 2495 kzalloc(2,GFP_KERNEL);
2496 } 2496 }
@@ -2528,7 +2528,7 @@ CIFSSpnegoSessSetup(unsigned int xid, struct cifsSesInfo *ses,
2528 2528
2529 len = strnlen(bcc_ptr, 1024); 2529 len = strnlen(bcc_ptr, 1024);
2530 if(ses->serverDomain) 2530 if(ses->serverDomain)
2531 kfree(ses->severDomain); 2531 kfree(ses->serverDomain);
2532 ses->serverDomain = kzalloc(len + 1, GFP_KERNEL); 2532 ses->serverDomain = kzalloc(len + 1, GFP_KERNEL);
2533 strncpy(ses->serverDomain, bcc_ptr, len); 2533 strncpy(ses->serverDomain, bcc_ptr, len);
2534 bcc_ptr += len; 2534 bcc_ptr += len;
@@ -3174,7 +3174,7 @@ CIFSNTLMSSPAuthSessSetup(unsigned int xid, struct cifsSesInfo *ses,
3174 the end since (at least) WIN2K and Windows XP have a major bug in not null 3174 the end since (at least) WIN2K and Windows XP have a major bug in not null
3175 terminating last Unicode string in response */ 3175 terminating last Unicode string in response */
3176 if(ses->serverOS) 3176 if(ses->serverOS)
3177 kfree(serverOS); 3177 kfree(ses->serverOS);
3178 ses->serverOS = 3178 ses->serverOS =
3179 kzalloc(2 * (len + 1), GFP_KERNEL); 3179 kzalloc(2 * (len + 1), GFP_KERNEL);
3180 cifs_strfromUCS_le(ses->serverOS, 3180 cifs_strfromUCS_le(ses->serverOS,