Skip to content

Commit

Permalink
misc_radius: fix spelling errors catched by lintian #688
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxmaniac committed Jun 29, 2016
1 parent 7529d97 commit f5e2480
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion modules/misc_radius/extra.c
Expand Up @@ -180,7 +180,7 @@ int extra2strar( struct extra_attr *extra, struct sip_msg *rq, str *val_arr)

/* check for overflow */
if (n == MAX_EXTRA) {
LM_WARN("array too short -> ommiting extras for accounting\n");
LM_WARN("array too short -> omitting extras for accounting\n");
return -1;
}

Expand Down
8 changes: 4 additions & 4 deletions modules/misc_radius/functions.c
Expand Up @@ -285,7 +285,7 @@ int radius_load_caller_avps(struct sip_msg* _m, char* _caller, char* _s2)
} else if(res == REJECT_RC){
LM_ERR("Authz radius - Load Caller - REJECTED \n");
} else{
LM_ERR("Authz radius - Load Caller - Unkown Response \n");
LM_ERR("Authz radius - Load Caller - Unknown Response \n");
}

rc_avpair_free(send);
Expand Down Expand Up @@ -376,7 +376,7 @@ int radius_load_callee_avps(struct sip_msg* _m, char* _callee, char* _s2)
} else if(res == REJECT_RC){
LM_ERR("Authz radius - Load Callee - REJECTED \n");
} else {
LM_ERR("Authz radius - Load Callee - Unkown response \n");
LM_ERR("Authz radius - Load Callee - Unknown response \n");
}
rc_avpair_free(send);

Expand Down Expand Up @@ -476,7 +476,7 @@ int radius_is_user_in(struct sip_msg* _m, char* _user, char* _group)
} else if(res == REJECT_RC){
LM_ERR("Authz radius - REJECTED \n");
} else{
LM_ERR("Authz radius - Unkown Response \n");
LM_ERR("Authz radius - Unknown Response \n");
}

rc_avpair_free(send);
Expand Down Expand Up @@ -720,7 +720,7 @@ int radius_does_uri_user_exist(struct sip_msg* _m, str user)
} else if(res == REJECT_RC){
LM_ERR("Authz radius - REJECTED \n");
} else {
LM_ERR("Authz radius - Unkown response \n");
LM_ERR("Authz radius - Unknown response \n");
}

rc_avpair_free(send);
Expand Down

0 comments on commit f5e2480

Please sign in to comment.