Skip to content

Commit

Permalink
warnings aren't errors
Browse files Browse the repository at this point in the history
  • Loading branch information
alandekok committed Jul 17, 2019
1 parent a9c38e6 commit c14778d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/modules/rlm_csv/rlm_csv.c
Original file line number Diff line number Diff line change
Expand Up @@ -608,8 +608,9 @@ static int mod_instantiate(void *instance, CONF_SECTION *conf)
if (!cs) {
if (inst->key) {
cf_log_warn(conf, "Ignoring 'key', as no 'update' section has been defined.");
return -1;
}

return 0;
}

if (!inst->key) {
Expand Down

0 comments on commit c14778d

Please sign in to comment.