Skip to content

Commit

Permalink
connect_uri can now be NULL
Browse files Browse the repository at this point in the history
Since the default was removed
  • Loading branch information
arr2036 committed Mar 28, 2014
1 parent 75de8ea commit 9b7f139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/rlm_rest/rest.c
Expand Up @@ -311,7 +311,7 @@ void *mod_conn_create(void *instance)
return NULL;
}

if (!*inst->connect_uri) {
if (!inst->connect_uri) {
ERROR("rlm_rest (%s): Skipping pre-connect, connect_uri not specified", inst->xlat_name);
return candle;
}
Expand Down

0 comments on commit 9b7f139

Please sign in to comment.