diff options
Diffstat (limited to 'source3/librpc/gen_ndr/tables.c')
-rw-r--r-- | source3/librpc/gen_ndr/tables.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/librpc/gen_ndr/tables.c b/source3/librpc/gen_ndr/tables.c index d260149901..9a1c5a06d5 100644 --- a/source3/librpc/gen_ndr/tables.c +++ b/source3/librpc/gen_ndr/tables.c @@ -6,6 +6,7 @@ #include "librpc/rpc/dcerpc_table.h" #include "librpc/gen_ndr/ndr_dfs.h" #include "librpc/gen_ndr/ndr_echo.h" +#include "librpc/gen_ndr/ndr_epmapper.h" #include "librpc/gen_ndr/ndr_eventlog.h" #include "librpc/gen_ndr/ndr_initshutdown.h" #include "librpc/gen_ndr/ndr_lsa.h" @@ -26,6 +27,9 @@ NTSTATUS dcerpc_register_builtin_interfaces(void) status = librpc_register_interface(&dcerpc_table_rpcecho); if (NT_STATUS_IS_ERR(status)) return status; + status = librpc_register_interface(&dcerpc_table_epmapper); + if (NT_STATUS_IS_ERR(status)) return status; + status = librpc_register_interface(&dcerpc_table_eventlog); if (NT_STATUS_IS_ERR(status)) return status; |