diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-01-11 07:29:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:08:41 -0500 |
commit | 0385de8b1fc0f8947b4f820b0c18ea46123efd8a (patch) | |
tree | f25bdefdb1a5f61847dc45ea8ec4300a228ae414 | |
parent | 945180f6763f713d9e56a836fae980d39c26a267 (diff) | |
download | samba-0385de8b1fc0f8947b4f820b0c18ea46123efd8a.tar.gz samba-0385de8b1fc0f8947b4f820b0c18ea46123efd8a.tar.bz2 samba-0385de8b1fc0f8947b4f820b0c18ea46123efd8a.zip |
r4677: stub.pm must be synced with server.pm
metze
(This used to be commit b467635c2dd90dc40e2358b8d18bec238a85786f)
-rw-r--r-- | source4/build/pidl/stub.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/build/pidl/stub.pm b/source4/build/pidl/stub.pm index 8546bbf307..d1448d467b 100644 --- a/source4/build/pidl/stub.pm +++ b/source4/build/pidl/stub.pm @@ -73,10 +73,10 @@ static NTSTATUS $name\__op_bind(struct dcesrv_call_state *dce_call, const struct #endif } -static void $name\__op_unbind(struct dcesrv_connection *dce_conn, const struct dcesrv_interface *iface) +static void $name\__op_unbind(struct dcesrv_connection_context *context, const struct dcesrv_interface *iface) { #ifdef DCESRV_INTERFACE_$uname\_UNBIND - DCESRV_INTERFACE_$uname\_UNBIND(dce_conn,iface); + DCESRV_INTERFACE_$uname\_UNBIND(context,iface); #else return; #endif |