diff options
author | Andreas Schneider <asn@samba.org> | 2011-03-29 10:52:32 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-03-29 16:03:53 +0200 |
commit | 991fa3a5fecc05a01b2d3696fe23cba109de10c0 (patch) | |
tree | a1b000dce62778f17a14dd2d9cf76659e988e231 /source3/smbd | |
parent | 28b204601556105ad57d7ac69210eb75f248f764 (diff) | |
download | samba-991fa3a5fecc05a01b2d3696fe23cba109de10c0.tar.gz samba-991fa3a5fecc05a01b2d3696fe23cba109de10c0.tar.bz2 samba-991fa3a5fecc05a01b2d3696fe23cba109de10c0.zip |
s3-spoolssd: Start the spoolss service correctly.
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 4b7637f89e..8c7b146e19 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -1253,7 +1253,7 @@ extern void build_options(bool screen); rpcsrv_type = lp_parm_const_string(GLOBAL_SECTION_SNUM, "rpc_server", "spoolss", "embedded"); - if (StrCaseCmp(rpcsrv_type, "embedded") != 0) { + if (StrCaseCmp(rpcsrv_type, "daemon") == 0) { start_spoolssd(smbd_event_context(), smbd_messaging_context()); } |