Skip to content

Commit

Permalink
auth_radius: print radius config path on failure to load
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed May 11, 2023
1 parent 6d26825 commit e6dcc14
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/modules/auth_radius/auth_radius.c
Expand Up @@ -120,7 +120,8 @@ static int mod_init(void)
int n;

if ((rh = rc_read_config(radius_config)) == NULL) {
LM_ERR("failed to open configuration file \n");
LM_ERR("failed to open configuration file: %s\n",
(radius_config)?radius_config:"none");
return -1;
}

Expand Down

0 comments on commit e6dcc14

Please sign in to comment.