summaryrefslogtreecommitdiff
path: root/source3/utils/smbcquotas.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/utils/smbcquotas.c')
-rw-r--r--source3/utils/smbcquotas.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/source3/utils/smbcquotas.c b/source3/utils/smbcquotas.c
index 06ecea15661..8ba3cc5f78f 100644
--- a/source3/utils/smbcquotas.c
+++ b/source3/utils/smbcquotas.c
@@ -582,6 +582,7 @@ int main(int argc, char *argv[])
static bool test_args = False;
struct cli_state *cli;
bool fix_user = False;
+ bool ok;
SMB_NTQUOTA_STRUCT qt;
TALLOC_CTX *frame = talloc_stackframe();
poptContext pc;
@@ -617,9 +618,6 @@ FSQFLAGS:QUOTA_ENABLED/DENY_DISK/LOG_SOFTLIMIT/LOG_HARD_LIMIT", "SETSTRING" },
fault_setup();
- lp_load_global(get_dyn_CONFIGFILE());
- load_interfaces();
-
smbcquotas_auth_info = user_auth_info_init(frame);
if (smbcquotas_auth_info == NULL) {
exit(1);
@@ -714,6 +712,17 @@ FSQFLAGS:QUOTA_ENABLED/DENY_DISK/LOG_SOFTLIMIT/LOG_HARD_LIMIT", "SETSTRING" },
poptFreeContext(pc);
popt_burn_cmdline_password(argc, argv);
+ ok = lp_load_global(get_dyn_CONFIGFILE());
+ if (!ok) {
+ DBG_ERR("ERROR: Loading config file %s - "
+ "run testparm to debug it\n",
+ get_dyn_CONFIGFILE());
+ exit(EXIT_PARSE_ERROR);
+ }
+
+ /* We must load interfaces after we load the smb.conf */
+ load_interfaces();
+
string_replace(path, '/', '\\');
server = SMB_STRDUP(path+2);