summaryrefslogtreecommitdiff
path: root/source4/librpc
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-12-16 12:11:00 +0000
committerAndrew Tridgell <tridge@samba.org>2003-12-16 12:11:00 +0000
commit60deb10a2c9cd41c6ab3ff5e788858ba203e490f (patch)
tree106ecdaef3c5105ab12e48a847737e70f428b8dd /source4/librpc
parentb3b10bce333b4e7ea7d0a5e8cccf3cf4411e2327 (diff)
downloadsamba-60deb10a2c9cd41c6ab3ff5e788858ba203e490f.tar.gz
samba-60deb10a2c9cd41c6ab3ff5e788858ba203e490f.tar.bz2
samba-60deb10a2c9cd41c6ab3ff5e788858ba203e490f.zip
fixed formatting of uuids in debug output
(This used to be commit 7895796ef8a0dfe5de1404e630b2489fdec39a56)
Diffstat (limited to 'source4/librpc')
-rw-r--r--source4/librpc/ndr/ndr_basic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/ndr/ndr_basic.c b/source4/librpc/ndr/ndr_basic.c
index cde0b52f3b..be4f16e89b 100644
--- a/source4/librpc/ndr/ndr_basic.c
+++ b/source4/librpc/ndr/ndr_basic.c
@@ -804,7 +804,7 @@ const char *GUID_string(TALLOC_CTX *mem_ctx, const struct GUID *guid)
void ndr_print_GUID(struct ndr_print *ndr, const char *name, const struct GUID *guid)
{
- ndr->print(ndr, "%-25s: %s", GUID_string(ndr->mem_ctx, guid));
+ ndr->print(ndr, "%-25s: %s", name, GUID_string(ndr->mem_ctx, guid));
}
void ndr_print_DATA_BLOB(struct ndr_print *ndr, const char *name, DATA_BLOB r)