summaryrefslogtreecommitdiff
path: root/source3/rpc_server/rpc_handles.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2012-02-13 18:58:32 +0100
committerAndreas Schneider <asn@cryptomilk.org>2012-03-14 17:56:13 +0100
commit4bccc911b82d82091bbb4c22a99518172f768c93 (patch)
tree61615a210ee5318dc1a43ef9f3ca674a554e1a6d /source3/rpc_server/rpc_handles.c
parent26d68c3c288195cfc152915dede47d505bd30b1d (diff)
downloadsamba-4bccc911b82d82091bbb4c22a99518172f768c93.tar.gz
samba-4bccc911b82d82091bbb4c22a99518172f768c93.tar.bz2
samba-4bccc911b82d82091bbb4c22a99518172f768c93.zip
s3-rpc_server: Increase debug level for policy handle.
Diffstat (limited to 'source3/rpc_server/rpc_handles.c')
-rw-r--r--source3/rpc_server/rpc_handles.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/rpc_server/rpc_handles.c b/source3/rpc_server/rpc_handles.c
index d547f18dc1..f98b2355fc 100644
--- a/source3/rpc_server/rpc_handles.c
+++ b/source3/rpc_server/rpc_handles.c
@@ -299,8 +299,8 @@ static struct dcesrv_handle *create_rpc_handle_internal(struct pipes_struct *p,
*hnd = rpc_hnd->wire_handle;
- DEBUG(4, ("Opened policy hnd[%d] ", (int)p->pipe_handles->count));
- dump_data(4, (uint8_t *)hnd, sizeof(*hnd));
+ DEBUG(6, ("Opened policy hnd[%d] ", (int)p->pipe_handles->count));
+ dump_data(6, (uint8_t *)hnd, sizeof(*hnd));
return rpc_hnd;
}
@@ -334,8 +334,8 @@ static struct dcesrv_handle *find_policy_by_hnd_internal(struct pipes_struct *p,
count = 0;
for (h = p->pipe_handles->handles; h != NULL; h = h->next) {
if (memcmp(&h->wire_handle, hnd, sizeof(*hnd)) == 0) {
- DEBUG(4,("Found policy hnd[%u] ", count));
- dump_data(4, (const uint8 *)hnd, sizeof(*hnd));
+ DEBUG(6,("Found policy hnd[%u] ", count));
+ dump_data(6, (const uint8 *)hnd, sizeof(*hnd));
if (data_p) {
*data_p = h->data;
}
@@ -383,7 +383,7 @@ bool close_policy_hnd(struct pipes_struct *p, struct policy_handle *hnd)
return false;
}
- DEBUG(3,("Closed policy\n"));
+ DEBUG(6,("Closed policy\n"));
p->pipe_handles->count--;