Skip to content

Commit

Permalink
* radsecproxy.c (extractattr): Fix bug where 'name' part was lost (in
Browse files Browse the repository at this point in the history
fact, 'val' was used for name).
  • Loading branch information
Linus Nordberg committed May 25, 2010
1 parent e6d9c66 commit 2e9d382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radsecproxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -2345,7 +2345,7 @@ struct tlv *extractattr(char *nameval) {
s2 = strchr(s + 1, ':');
if (s2) { /* Two ':' means we have vendor:name:val. */
vendor = name;
name = atoi(s2 + 1);
name = atoi(s + 1);
s = s2;
}

Expand Down

0 comments on commit 2e9d382

Please sign in to comment.