From b4d35bee38a4cfd0eba26956dde2c5bb23cdb1c3 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 18 Mar 2012 17:44:24 +0100 Subject: libndr: Rename policy_handle_empty to ndr_policy_handle_empty. This makes the NDR namespace a bit clearer, in preparation of ABI checking. --- source3/rpc_server/epmapper/srv_epmapper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/rpc_server/epmapper/srv_epmapper.c b/source3/rpc_server/epmapper/srv_epmapper.c index cb99bde528..4fea5887a4 100644 --- a/source3/rpc_server/epmapper/srv_epmapper.c +++ b/source3/rpc_server/epmapper/srv_epmapper.c @@ -537,7 +537,7 @@ error_status_t _epm_Lookup(struct pipes_struct *p, r->in.max_ents)); if (r->in.entry_handle == NULL || - policy_handle_empty(r->in.entry_handle)) { + ndr_policy_handle_empty(r->in.entry_handle)) { struct GUID *obj; char *srv_addr = NULL; @@ -924,7 +924,7 @@ error_status_t _epm_Map(struct pipes_struct *p, } if (r->in.entry_handle == NULL || - policy_handle_empty(r->in.entry_handle)) { + ndr_policy_handle_empty(r->in.entry_handle)) { struct GUID *obj; char *srv_addr = NULL; -- cgit