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/services/svc_spoolss.c | |
parent | cf28df1d9005ce15bc28615da4a9de0cd39c5573 (diff) | |
download | samba-0eacc476229e9d6c5926096b73546b5363cd9d60.tar.gz |
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/services/svc_spoolss.c')
-rw-r--r-- | source3/services/svc_spoolss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/services/svc_spoolss.c b/source3/services/svc_spoolss.c index 3b56f9350d4..e827013d00e 100644 --- a/source3/services/svc_spoolss.c +++ b/source3/services/svc_spoolss.c @@ -48,7 +48,7 @@ static WERROR spoolss_start( const char *service ) { /* see if the smb.conf will support this anyways */ - if ( _lp_disable_spoolss() ) + if ( lp__disable_spoolss() ) return WERR_ACCESS_DENIED; if (lp_get_spoolss_state() == SVCCTL_RUNNING) { |