From aa9f67163cd2df2a815ef585edad1951343b82c8 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 30 Dec 2005 22:46:16 +0000 Subject: r12620: Get rid of automatically generated lists of init functions of subsystems. This allows Samba libraries to be used by other projects (and parts of Samba to be built as shared libraries). (This used to be commit 44f0aba715bfedc7e1ee3d07e9a101a91dbd84b3) --- source4/librpc/rpc/dcerpc.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'source4/librpc/rpc/dcerpc.c') diff --git a/source4/librpc/rpc/dcerpc.c b/source4/librpc/rpc/dcerpc.c index df71be7651..0269eb9919 100644 --- a/source4/librpc/rpc/dcerpc.c +++ b/source4/librpc/rpc/dcerpc.c @@ -29,6 +29,13 @@ #include "libcli/composite/composite.h" #include "auth/gensec/gensec.h" +NTSTATUS dcerpc_init(void) +{ + gensec_init(); + + return NT_STATUS_OK; +} + static void dcerpc_ship_next_request(struct dcerpc_connection *c); /* destroy a dcerpc connection */ -- cgit