X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Fguestfsd.c;h=6a9b60d95c4d564239fc3eb18e719f1717f0e652;hb=2f88a20d30e2a5723e8d705da00373c7848b9350;hp=e398b7d8348410fad052a94ebe27bde014e4b0a9;hpb=d89a88d67e577ee6111820cb44c3440b7772608d;p=libguestfs.git diff --git a/daemon/guestfsd.c b/daemon/guestfsd.c index e398b7d..6a9b60d 100644 --- a/daemon/guestfsd.c +++ b/daemon/guestfsd.c @@ -142,6 +142,8 @@ main (int argc, char *argv[]) int dont_fork = 0; char *cmdline; + ignore_value (chdir ("/")); + if (winsock_init () == -1) error (EXIT_FAILURE, 0, "winsock initialization failed"); @@ -258,6 +260,7 @@ main (int argc, char *argv[]) "output to the libguestfs developers, either in a bug report\n" "or on the libguestfs redhat com mailing list.\n" "\n"); + perror ("/dev/virtio-ports/org.libguestfs.channel.0"); exit (EXIT_FAILURE); } @@ -270,8 +273,10 @@ main (int argc, char *argv[]) xdrmem_create (&xdr, lenbuf, sizeof lenbuf, XDR_ENCODE); xdr_u_int (&xdr, &len); - if (xwrite (sock, lenbuf, sizeof lenbuf) == -1) + if (xwrite (sock, lenbuf, sizeof lenbuf) == -1) { + perror ("xwrite"); exit (EXIT_FAILURE); + } xdr_destroy (&xdr); @@ -974,7 +979,8 @@ trim (char *str) } /* printf helper function so we can use %Q ("quoted") and %R to print - * shell-quoted strings. See HACKING file for more details. + * shell-quoted strings. See guestfs(3)/EXTENDING LIBGUESTFS for more + * details. */ static int print_shell_quote (FILE *stream,