diff options
author | Volker Lendecke <vl@samba.org> | 2009-10-31 11:28:55 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-10-31 11:28:55 +0100 |
commit | 9ab1f793ffe5639820e450dabe58aed8cfb30127 (patch) | |
tree | 503428b52029a7df825c3a2338b8d8c65b3dcce7 | |
parent | a80a0b7728de21e992f8f0b3e31b600441a6535d (diff) | |
download | samba-9ab1f793ffe5639820e450dabe58aed8cfb30127.tar.gz samba-9ab1f793ffe5639820e450dabe58aed8cfb30127.tar.xz samba-9ab1f793ffe5639820e450dabe58aed8cfb30127.zip |
s3: Fix the RPC server SUBSYSTEM declaration
If I read SMB_SUBSYSTEM right then the 2nd argument needs to be the file where
the static_init_rpc (in this case) is defined. This seems to have moved from
server.c to process.c.
Jelmer, please check!
Volker
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 76ef1510be4..dca97f468f2 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -6371,7 +6371,7 @@ SMB_MODULE(rpc_spoolss, \$(RPC_SPOOLSS_OBJ), "bin/librpc_spoolss.$SHLIBEXT", RPC SMB_MODULE(rpc_eventlog, \$(RPC_EVENTLOG_OBJ), "bin/librpc_eventlog.$SHLIBEXT", RPC) SMB_MODULE(rpc_samr, \$(RPC_SAMR_OBJ), "bin/librpc_samr.$SHLIBEXT", RPC) SMB_MODULE(rpc_rpcecho, \$(RPC_ECHO_OBJ), "bin/librpc_rpcecho.$SHLIBEXT", RPC) -SMB_SUBSYSTEM(RPC,smbd/server.o) +SMB_SUBSYSTEM(RPC,smbd/process.o) SMB_MODULE(idmap_ldap, winbindd/idmap_ldap.o, "bin/ldap.$SHLIBEXT", IDMAP) SMB_MODULE(idmap_tdb, winbindd/idmap_tdb.o, "bin/tdb.$SHLIBEXT", IDMAP) |