diff options
author | Stefan Metzmacher <metze@samba.org> | 2014-01-24 11:00:04 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2014-02-11 16:20:30 +0100 |
commit | 81add4222a73728b2b6c42e07921cffb5a636c36 (patch) | |
tree | 54108a93a6eb3c7b7ef6a468aafb317d887d92b7 | |
parent | 48148a454d8ba6b642bd19ba0e3ab2c58b8986ea (diff) | |
download | samba-81add4222a73728b2b6c42e07921cffb5a636c36.tar.gz samba-81add4222a73728b2b6c42e07921cffb5a636c36.tar.xz samba-81add4222a73728b2b6c42e07921cffb5a636c36.zip |
s4:torture/rpc: print out the object guid in rpc.epmapper.epmapper.Lookup_simple
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Guenther Deschner <gd@samba.org>
-rw-r--r-- | source4/torture/rpc/epmapper.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/torture/rpc/epmapper.c b/source4/torture/rpc/epmapper.c index 9b6d9f89da..d45c01116f 100644 --- a/source4/torture/rpc/epmapper.c +++ b/source4/torture/rpc/epmapper.c @@ -497,8 +497,9 @@ static bool test_Lookup_simple(struct torture_context *tctx, for (i = 0; i < *r.out.num_ents; i++) { torture_comment(tctx, - "\n Found '%s'\n", - r.out.entries[i].annotation); + "\n Found '%s' Object[%s]\n", + r.out.entries[i].annotation, + GUID_string(tctx, &r.out.entries[i].object)); display_tower(tctx, &r.out.entries[i].tower->tower); } |