diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-08-12 15:33:37 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-08-12 15:33:37 +1000 |
commit | 011f103501e9465fbea56194910e082306bbf1f1 (patch) | |
tree | c3b7267bdf827491d97af1e41eef585e96fe0092 /librpc | |
parent | 3b5c6bc971c4e5c32b19072f0f54258792d00439 (diff) | |
download | samba-011f103501e9465fbea56194910e082306bbf1f1.tar.gz samba-011f103501e9465fbea56194910e082306bbf1f1.tar.bz2 samba-011f103501e9465fbea56194910e082306bbf1f1.zip |
when we get an NDR error in the logs, it is useful to know where it happened
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/ndr/libndr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librpc/ndr/libndr.h b/librpc/ndr/libndr.h index 7109b73d2a..53bed011e7 100644 --- a/librpc/ndr/libndr.h +++ b/librpc/ndr/libndr.h @@ -215,7 +215,7 @@ enum ndr_compression_alg { #define NDR_PULL_NEED_BYTES(ndr, n) do { \ if ((n) > ndr->data_size || ndr->offset + (n) > ndr->data_size) { \ - return ndr_pull_error(ndr, NDR_ERR_BUFSIZE, "Pull bytes %u", (unsigned)n); \ + return ndr_pull_error(ndr, NDR_ERR_BUFSIZE, "Pull bytes %u (%s)", (unsigned)n, __location__); \ } \ } while(0) |