Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Jun 21, 2017
1 parent 93aa824 commit 81ab261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/modules.c
Expand Up @@ -880,7 +880,7 @@ static module_instance_t *module_bootstrap(CONF_SECTION *modules, CONF_SECTION *
*/
if (mod_inst->module->bootstrap &&
((mod_inst->module->bootstrap)(cs, mod_inst->dl_inst->data) < 0)) {
cf_log_err(cs, "Instantiation failed for module \"%s\"", inst_name);
cf_log_err(cs, "Bootstrap failed for module \"%s\"", inst_name);
talloc_free(mod_inst);
return NULL;
}
Expand Down

0 comments on commit 81ab261

Please sign in to comment.