diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-04-12 17:03:38 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-16 14:32:38 +1000 |
commit | 0eacc476229e9d6c5926096b73546b5363cd9d60 (patch) | |
tree | 31e7d3ba05bb0f28421d64d04253792df65bc3fd /source3/smbd | |
parent | cf28df1d9005ce15bc28615da4a9de0cd39c5573 (diff) | |
download | samba-0eacc476229e9d6c5926096b73546b5363cd9d60.tar.gz samba-0eacc476229e9d6c5926096b73546b5363cd9d60.tar.bz2 samba-0eacc476229e9d6c5926096b73546b5363cd9d60.zip |
param: Change from _lp to lp__ as the prefix for internal parameter wrappers
This will make a merge with the lib/param param code easier, as we can then paste lp_ to the front of
all parameters unconditionally.
Andrew Bartlett
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c index d3bcc48893..16c2d28a26 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -1392,7 +1392,7 @@ extern void build_options(bool screen); start_lsasd(ev_ctx, msg_ctx); } - if (!_lp_disable_spoolss() && + if (!lp__disable_spoolss() && (rpc_spoolss_daemon() != RPC_DAEMON_DISABLED)) { bool bgq = lp_parm_bool(-1, "smbd", "backgroundqueue", true); @@ -1400,7 +1400,7 @@ extern void build_options(bool screen); exit(1); } } - } else if (!_lp_disable_spoolss() && + } else if (!lp__disable_spoolss() && (rpc_spoolss_daemon() != RPC_DAEMON_DISABLED)) { if (!printing_subsystem_init(ev_ctx, msg_ctx, false, false)) { exit(1); |