diff options
author | Günther Deschner <gd@samba.org> | 2008-03-27 16:44:37 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-03-27 18:04:01 +0100 |
commit | 3057c40dbe32dae502258ca9103dc61a765d85c1 (patch) | |
tree | 76ab5c23b34b5802be4be46e745720c48f1b10d5 /source3/librpc/ndr | |
parent | 0a4f742f0ac7846b4f104f1749095162883038cd (diff) | |
download | samba-3057c40dbe32dae502258ca9103dc61a765d85c1.tar.gz samba-3057c40dbe32dae502258ca9103dc61a765d85c1.tar.bz2 samba-3057c40dbe32dae502258ca9103dc61a765d85c1.zip |
Ndr pull and push errors are worth to be logged with 1 at least.
Guenther
(This used to be commit 3426f13f3bbcb5cae3f2e6aac9e2d04174e5bdc0)
Diffstat (limited to 'source3/librpc/ndr')
-rw-r--r-- | source3/librpc/ndr/ndr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/librpc/ndr/ndr.c b/source3/librpc/ndr/ndr.c index 53eff00d59..d94d12e146 100644 --- a/source3/librpc/ndr/ndr.c +++ b/source3/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); |