Skip to content

Commit

Permalink
[CIFS] Use unsigned ea length for clarity
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Steve French committed Feb 24, 2010
1 parent 835a36c commit 122ca00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/cifs/cifssmb.c
Original file line number Diff line number Diff line change
Expand Up @@ -5392,7 +5392,7 @@ CIFSSMBQAllEAs(const int xid, struct cifsTconInfo *tcon,
temp_fea = ea_response_data->list;
temp_ptr = (char *)temp_fea;
while (list_len > 0) {
int name_len;
unsigned int name_len;
__u16 value_len;

list_len -= 4;
Expand Down

0 comments on commit 122ca00

Please sign in to comment.