and one more

On 3/30/13, Oliver Pinter <oliver.p...@gmail.com> wrote:
> yes this is git head, sorry
>
> On 3/30/13, Juergen Lock <n...@jelal.kn-bremen.de> wrote:
>> On Sat, Mar 30, 2013 at 02:36:35AM +0100, Oliver Pinter wrote:
>>>[..]
>>>
>>> disable some unneeded function, and make qemu 1.4 compilable on FreeBSD
>>> 9.1
>>>
>>
>> I think you are building qemu git head as the hexdump function at least
>> isn't in 1.4.0?  Anyway I have meanwhile updated the qemu-devel port
>> to 1.4.0 with some similar patches to yours and (among other things)
>> preliminary bsd-user improvements mostly by ssson and cognet, will
>> leave the PR open for when I need the hexdump patch for a future
>> update.
>>
>>  Thanx,
>>      Juergen
>>
>
commit 5d6a1ccd8cd97a0708aabcfb5088b44c6ae5395d
Author: Oliver Pinter <oliver.p...@gmail.com>
Date:   Sat Mar 30 18:24:02 2013 +0100

    one more hexdump fix
    
    Signed-off-by: Oliver Pinter <oliver.p...@gmail.com>

diff --git a/util/iov.c b/util/iov.c
index 9dae318..bab3998 100644
--- a/util/iov.c
+++ b/util/iov.c
@@ -211,7 +211,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);
 }
 
_______________________________________________
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Reply via email to