summaryrefslogtreecommitdiffstats
path: root/util/iov.c
diff options
context:
space:
mode:
authorEd Maste <emaste@freebsd.org>2013-05-16 11:32:28 -0400
committerAnthony Liguori <aliguori@us.ibm.com>2013-05-20 08:20:08 -0500
commit3568ac2a6e6df89cea52a56f70b95af9e1251bbd (patch)
tree40bd6cfd8072dc1dbedee93799123d1f2bfde90c /util/iov.c
parentfd2a2e1c552cb47ca196552457e175c889b58478 (diff)
downloadhqemu-3568ac2a6e6df89cea52a56f70b95af9e1251bbd.zip
hqemu-3568ac2a6e6df89cea52a56f70b95af9e1251bbd.tar.gz
Rename hexdump to avoid FreeBSD libutil conflict
On FreeBSD libutil is used for openpty(), but it also provides a hexdump() which conflicts with QEMU's. Signed-off-by: Ed Maste <emaste@freebsd.org> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Message-id: 1368718348-15199-1-git-send-email-emaste@freebsd.org Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'util/iov.c')
-rw-r--r--util/iov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/iov.c b/util/iov.c
index 78bbbe1..cc6e837 100644
--- a/util/iov.c
+++ b/util/iov.c
@@ -225,7 +225,7 @@ void iov_hexdump(const struct iovec *iov, const unsigned int iov_cnt,
size = size > limit ? limit : size;
buf = g_malloc(size);
iov_to_buf(iov, iov_cnt, 0, buf, size);
- hexdump(buf, fp, prefix, size);
+ qemu_hexdump(buf, fp, prefix, size);
g_free(buf);
}
OpenPOWER on IntegriCloud