From 3426f13f3bbcb5cae3f2e6aac9e2d04174e5bdc0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Thu, 27 Mar 2008 16:44:37 +0100 Subject: [PATCH] Ndr pull and push errors are worth to be logged with 1 at least. Guenther --- source/librpc/ndr/ndr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/librpc/ndr/ndr.c b/source/librpc/ndr/ndr.c index 53eff00d59c..d94d12e1466 100644 --- a/source/librpc/ndr/ndr.c +++ b/source/librpc/ndr/ndr.c @@ -464,7 +464,7 @@ _PUBLIC_ enum ndr_err_code ndr_pull_error(struct ndr_pull *ndr, return NDR_ERR_ALLOC; } - DEBUG(3,("ndr_pull_error(%u): %s\n", ndr_err, s)); + DEBUG(1,("ndr_pull_error(%u): %s\n", ndr_err, s)); free(s); @@ -490,7 +490,7 @@ _PUBLIC_ enum ndr_err_code ndr_push_error(struct ndr_push *ndr, return NDR_ERR_ALLOC; } - DEBUG(3,("ndr_push_error(%u): %s\n", ndr_err, s)); + DEBUG(1,("ndr_push_error(%u): %s\n", ndr_err, s)); free(s); -- 2.47.3