diff options
Diffstat (limited to 'source3/librpc/rpc')
-rw-r--r-- | source3/librpc/rpc/rpc_common.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/librpc/rpc/rpc_common.c b/source3/librpc/rpc/rpc_common.c index 65e3205f62..1219b2d7a4 100644 --- a/source3/librpc/rpc/rpc_common.c +++ b/source3/librpc/rpc/rpc_common.c @@ -35,6 +35,7 @@ #include "../librpc/gen_ndr/ndr_ntsvcs.h" #include "../librpc/gen_ndr/ndr_epmapper.h" #include "../librpc/gen_ndr/ndr_drsuapi.h" +#include "../librpc/gen_ndr/ndr_fsrvp.h" static const char *get_pipe_name_from_iface( TALLOC_CTX *mem_ctx, const struct ndr_interface_table *interface) @@ -140,6 +141,9 @@ static bool initialize_interfaces(void) if (!smb_register_ndr_interface(&ndr_table_drsuapi)) { return false; } + if (!smb_register_ndr_interface(&ndr_table_FileServerVssAgent)) { + return false; + } return true; } |