1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-31 17:18:04 +03:00

fixed formatting of uuids in debug output

This commit is contained in:
Andrew Tridgell 0001-01-01 00:00:00 +00:00
parent 691f9c1c44
commit 7895796ef8

View File

@ -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)