1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

Correct message on wbinfo fail to open config file.

Jeremy.
(This used to be commit 9b7182a9da)
This commit is contained in:
Jeremy Allison 2001-12-04 21:30:52 +00:00
parent 20fdf28178
commit 4d3ec230b4

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);
}