aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs
diff options
context:
space:
mode:
authorSteve French <sfrench@us.ibm.com>2010-02-24 16:56:48 -0500
committerSteve French <sfrench@us.ibm.com>2010-02-24 16:56:48 -0500
commit122ca0076e5f84fa12943f22f6586ff285670783 (patch)
tree45725a93611c7246dfa5b7f932795f9f4d76c4d6 /fs/cifs
parent835a36ca4a4cd9da557318c0e213346644a4b2c8 (diff)
[CIFS] Use unsigned ea length for clarity
Jeff correctly noted that using unsigned ea length is more intuitive. CC: Jeff Lyaton <jlayton@redhat.com> Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r--fs/cifs/cifssmb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c
index 99ae57d01d4f..b79ff68c47c7 100644
--- a/fs/cifs/cifssmb.c
+++ b/fs/cifs/cifssmb.c
@@ -5392,7 +5392,7 @@ QAllEAsRetry:
5392 temp_fea = ea_response_data->list; 5392 temp_fea = ea_response_data->list;
5393 temp_ptr = (char *)temp_fea; 5393 temp_ptr = (char *)temp_fea;
5394 while (list_len > 0) { 5394 while (list_len > 0) {
5395 int name_len; 5395 unsigned int name_len;
5396 __u16 value_len; 5396 __u16 value_len;
5397 5397
5398 list_len -= 4; 5398 list_len -= 4;