Skip to content

Commit

Permalink
auth_radius: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dilyanpalauzov authored and miconda committed Mar 30, 2023
1 parent da353c2 commit 1fd32a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modules/auth_radius/doc/auth_radius_admin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<section>
<title>Modules</title>
<para>
The module depends on the following modules (in the other words
The module depends on the following modules (in other words
the listed modules must be loaded before this module):
<itemizedlist>
<listitem>
Expand Down
2 changes: 1 addition & 1 deletion src/modules/auth_radius/sterman.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ static inline int extract_avp(
name->s.s = vp->strvalue;
value->n = strtol(++p, &r, 10);
} else if(p && r && p != r && !q) {
/* int name and int vale */
/* int name and int value */
name->n = strtol(++p, &q, 10);
value->n = strtol(++r, &q, 10);
} else if((!p || p > q) && q) {
Expand Down

0 comments on commit 1fd32a9

Please sign in to comment.