1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

pidl: Fix prototype for server init functions.

Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Sat Mar 19 04:07:40 CET 2011 on sn-devel-104
This commit is contained in:
Jelmer Vernooij 2011-03-19 03:20:29 +01:00
parent df0b7f1c34
commit 98e4ef09f4

View File

@ -251,9 +251,9 @@ static bool $name\__op_interface_by_name(struct dcesrv_interface *iface, const c
return true;
}
return false;
return false;
}
NTSTATUS dcerpc_server_$name\_init(void)
{
NTSTATUS ret;
@ -289,6 +289,9 @@ sub ParseInterface($)
my($interface) = shift;
my $count = 0;
$res .= "NTSTATUS dcerpc_server_$interface->{NAME}\_init(void);\n";
$res .= "\n";
if (!defined $interface->{PROPERTIES}->{uuid}) {
return $res;
}