mirror of
https://github.com/samba-team/samba.git
synced 2025-12-05 12:23:50 +03:00
r12623: Another round of fixes for the prototypes of tables.c
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
9e0ba38037
commit
fb5b22e3dc
@@ -119,3 +119,16 @@ const struct dcerpc_interface_list *librpc_dcerpc_pipes(void)
|
||||
}
|
||||
|
||||
|
||||
NTSTATUS dcerpc_register_builtin_interfaces();
|
||||
|
||||
NTSTATUS dcerpc_table_init(void)
|
||||
{
|
||||
static BOOL initialized = False;
|
||||
|
||||
if (initialized) return NT_STATUS_OK;
|
||||
initialized = True;
|
||||
|
||||
dcerpc_register_builtin_interfaces();
|
||||
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user