1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-25 00:23:52 +03:00

r24551: rename dcerpc_interface_table -> ndr_interface_table

rename dcerpc_interface_list  -> ndr_interface_list

and move them to libndr.h

metze
This commit is contained in:
Stefan Metzmacher
2007-08-19 20:46:45 +00:00
committed by Gerald (Jerry) Carter
parent 473bca74dc
commit 4adbebef5d
28 changed files with 110 additions and 110 deletions

View File

@@ -51,7 +51,7 @@ sub process_file($)
my $found = 0;
while (my $line = <FILE>) {
if ($line =~ /extern const struct dcerpc_interface_table (\w+);/) {
if ($line =~ /extern const struct ndr_interface_table (\w+);/) {
$found = 1;
$init_fns.="\tstatus = librpc_register_interface(&$1);\n";
$init_fns.="\tif (NT_STATUS_IS_ERR(status)) return status;\n\n";