search for: guestfs_status_ok

Displaying 4 results from an estimated 4 matches for "guestfs_status_ok".

2014 May 15
2
Re: guestfsd crashes when the handle is closed
...= <optimized out> lenbuf = "\000\000\000(" len = 40 hdr = {prog = 536933877, vers = 4, proc = GUESTFS_PROC_INTERNAL_AUTOSYNC, direction = GUESTFS_DIRECTION_CALL, serial = 1192960, progress_hint = 0, optargs_bitmask = 0, status = GUESTFS_STATUS_OK} *#2 0xb76d3190 in main (argc=2, argv=0xbfedcf34) at guestfsd.c:342* options = <synthetic pointer> long_options = {{name = 0xb77448b2 "help", has_arg = 0, flag = 0x0, val = 63}, {name = 0xb7745fb9 "verbose", has_arg = 0, flag = 0x0,...
2014 May 15
2
Re: guestfsd crashes when the handle is closed
Hello, So in ubuntu1204 guest This is what i got : *(gdb)* bt full * #0* 0x005a9fc0 in exit () from /lib/i386-linux-gnu/libc.so.6 No symbol table info available. * #1* 0x0805f7dd in ?? () No symbol table info available. * #2* 0x0804aedf in ?? () No symbol table info available. *#3* 0x005904d3 in __libc_start_main () from /lib/i386-linux-gnu/libc.so.6 No symbol
2015 Jul 02
0
[PATCH] Fix various -Wformat problems.
...(hdr.direction != GUESTFS_DIRECTION_CALL) { - reply_with_error ("unexpected message direction (%d)", hdr.direction); + reply_with_error ("unexpected message direction (%d)", + (int) hdr.direction); goto cont; } if (hdr.status != GUESTFS_STATUS_OK) { - reply_with_error ("unexpected message status (%d)", hdr.status); + reply_with_error ("unexpected message status (%d)", (int) hdr.status); goto cont; } @@ -444,8 +445,9 @@ receive_file (receive_cb cb, void *opaque) if (verbose) fprintf (...
2015 Jul 02
0
[PATCH v2] Fix various -Wformat problems.
...(hdr.direction != GUESTFS_DIRECTION_CALL) { - reply_with_error ("unexpected message direction (%d)", hdr.direction); + reply_with_error ("unexpected message direction (%d)", + (int) hdr.direction); goto cont; } if (hdr.status != GUESTFS_STATUS_OK) { - reply_with_error ("unexpected message status (%d)", hdr.status); + reply_with_error ("unexpected message status (%d)", (int) hdr.status); goto cont; } @@ -444,8 +445,9 @@ receive_file (receive_cb cb, void *opaque) if (verbose) fprintf (...