1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-10 12:58:35 +03:00

Correct message on wbinfo fail to open config file.

Jeremy.
This commit is contained in:
Jeremy Allison -
parent 837f2b961b
commit 9b7182a9da

View File

@ -460,7 +460,8 @@ int main(int argc, char **argv)
}
if (!lp_load(dyn_CONFIGFILE, True, False, False)) {
DEBUG(0, ("error opening config file\n"));
fprintf(stderr, "wbinfo: error opening config file %s. Error was %s\n",
dyn_CONFIGFILE, strerror(errno));
exit(1);
}