From 55ed0be65f07b46d51a647e556644039d68a002d Mon Sep 17 00:00:00 2001 From: David Markey Date: Mon, 29 Jun 2009 08:12:03 +0200 Subject: Fix bug 6514: net gives unhelpful "lp_load failed" when it's missing smb.conf --- source3/lib/netapi/netapi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/netapi/netapi.c b/source3/lib/netapi/netapi.c index 889388173f..2f8474b37f 100644 --- a/source3/lib/netapi/netapi.c +++ b/source3/lib/netapi/netapi.c @@ -89,7 +89,7 @@ NET_API_STATUS libnetapi_init(struct libnetapi_ctx **context) if (!lp_load(get_dyn_CONFIGFILE(), true, false, false, false)) { TALLOC_FREE(frame); - fprintf(stderr, "lp_load failed\n"); + fprintf(stderr, "error loading %s\n", get_dyn_CONFIGFILE() ); return W_ERROR_V(WERR_GENERAL_FAILURE); } -- cgit