summaryrefslogtreecommitdiff
path: root/source/librpc/rpc
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-12-02 17:09:43 +0100
committerStefan Metzmacher <metze@samba.org>2007-12-21 05:47:02 +0100
commit6cbce47a3eaef76a89db7cd0ab0d4f6441fc720d (patch)
tree7744228fcbc12720c751da72eeb01d25ac5d824e /source/librpc/rpc
parent98c29e090fd448193ca6fca8f90751bfd0cb2e74 (diff)
downloadsamba-6cbce47a3eaef76a89db7cd0ab0d4f6441fc720d.tar.gz
r26226: Avoid more uses of global_loadparm.
Diffstat (limited to 'source/librpc/rpc')
-rw-r--r--source/librpc/rpc/dcerpc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/librpc/rpc/dcerpc.c b/source/librpc/rpc/dcerpc.c
index ef63cb381bb..74dc2562ed1 100644
--- a/source/librpc/rpc/dcerpc.c
+++ b/source/librpc/rpc/dcerpc.c
@@ -28,10 +28,11 @@
#include "librpc/gen_ndr/ndr_dcerpc.h"
#include "libcli/composite/composite.h"
#include "auth/gensec/gensec.h"
+#include "param/param.h"
NTSTATUS dcerpc_init(void)
{
- gensec_init();
+ gensec_init(global_loadparm);
return NT_STATUS_OK;
}