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

r12471: r12038@cabra: derrell | 2005-12-24 23:17:16 -0500

libsmbclient was not loading the global configuration file.  This should fix 3336.
This commit is contained in:
Derrell Lipman 2005-12-25 04:17:32 +00:00 committed by Gerald (Jerry) Carter
parent e3bab0cc43
commit 6d7a9ce7a7

View File

@ -5673,6 +5673,11 @@ SMBCCTX * smbc_init_context(SMBCCTX * context)
/* Here we would open the smb.conf file if needed ... */
if (!lp_load(dyn_CONFIGFILE, True, False, False)) {
DEBUG(5, ("Could not load config file: %s\n",
dyn_CONFIGFILE));
}
load_interfaces(); /* Load the list of interfaces ... */
in_client = True; /* FIXME, make a param */