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

s4-idl: redefine dreplsrv_refresh() to be alike other RPC function definitions

Sorry for the 'custom' definition first time
This commit is contained in:
Kamen Mazdrashki 2010-09-05 22:54:05 +03:00
parent cf616ec316
commit dea5c7b948
2 changed files with 2 additions and 4 deletions

View File

@ -244,7 +244,7 @@ static NTSTATUS dreplsrv_refresh(struct irpc_message *msg,
struct dreplsrv_service *s = talloc_get_type(msg->private_data,
struct dreplsrv_service);
r->out.werr = dreplsrv_refresh_partitions(s);
r->out.result = dreplsrv_refresh_partitions(s);
return NT_STATUS_OK;
}

View File

@ -156,7 +156,5 @@ import "misc.idl", "security.idl", "nbt.idl";
* @param partition_dn Partition to refresh cacheh for.
* If empy/NULL, refresh all partitions.
*/
void dreplsrv_refresh(
[out] WERROR werr
);
WERROR dreplsrv_refresh();
}