Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 338284
b: refs/heads/master
c: 8b7a13c
h: refs/heads/master
v: v3
  • Loading branch information
Larry Finger authored and Greg Kroah-Hartman committed Nov 28, 2012
1 parent 7e70bd6 commit 948f0d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0df1a84e0ec875d1bc12ac6aca325cb3543a7ad6
refs/heads/master: 8b7a13c3f404cbd26b495fa9c34339cb9b7b8164
2 changes: 1 addition & 1 deletion trunk/drivers/staging/rtl8712/mlme_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ void r8712_report_sec_ie(struct _adapter *adapter, u8 authmode, u8 *sec_ie)
p = buff;
p += sprintf(p, "ASSOCINFO(ReqIEs=");
len = sec_ie[1] + 2;
len = (len < IW_CUSTOM_MAX) ? len : IW_CUSTOM_MAX;
len = (len < IW_CUSTOM_MAX) ? len : IW_CUSTOM_MAX - 1;
for (i = 0; i < len; i++)
p += sprintf(p, "%02x", sec_ie[i]);
p += sprintf(p, ")");
Expand Down

0 comments on commit 948f0d9

Please sign in to comment.