diff options
author | Andreas Schneider <asn@samba.org> | 2011-07-18 11:42:43 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2011-07-18 14:01:02 +0200 |
commit | df09511cf2d4462384b85ef0d0a82e059a93d4c5 (patch) | |
tree | cb98ff20f677219d211f971622bdad4951a99363 /source3/printing | |
parent | 73bfd16bd589989b2e64599f03bc43a52ebfcbbc (diff) | |
download | samba-df09511cf2d4462384b85ef0d0a82e059a93d4c5.tar.gz samba-df09511cf2d4462384b85ef0d0a82e059a93d4c5.tar.bz2 samba-df09511cf2d4462384b85ef0d0a82e059a93d4c5.zip |
s3-rpc_server: Fixed segfaults in rpc daemons.
Autobuild-User: Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date: Mon Jul 18 14:01:02 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/spoolssd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/spoolssd.c b/source3/printing/spoolssd.c index cb90a9f7c7..039eb8872e 100644 --- a/source3/printing/spoolssd.c +++ b/source3/printing/spoolssd.c @@ -222,7 +222,7 @@ void start_spoolssd(struct tevent_context *ev_ctx, exit(1); } - if (!setup_named_pipe_socket(SPOOLSS_PIPE_NAME, ev_ctx)) { + if (!setup_named_pipe_socket(SPOOLSS_PIPE_NAME, ev_ctx, msg_ctx)) { exit(1); } |