Skip to content

Commit

Permalink
Fix error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed Feb 17, 2015
1 parent 5a202bc commit 538fe5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/stored/sd_backends.c
Expand Up @@ -169,7 +169,8 @@ DEVICE *init_backend_dev(JCR *jcr, int device_type)

return backend_shared_library->backend_instantiate(jcr, device_type);
} else {
Jmsg(jcr, M_ABORT, 0, _("Unable to load any shared library for .\n"));
Jmsg(jcr, M_ABORT, 0, _("Unable to load any shared library for libbareossd-%s%s\n"),
backend_interface_mapping->interface_name, DYN_LIB_EXTENSION);
return (DEVICE *)NULL;
}
}
Expand Down

0 comments on commit 538fe5b

Please sign in to comment.