search for: 95a2b3d

Displaying 2 results from an estimated 2 matches for "95a2b3d".

2016 Mar 18
9
[PATCH 0/7] Small portability changes
Assorted collection of small improvements in making libguestfs build on non-Linux OSes; most of the changes impact tests though. Thanks, Pino Toscano (7): build: check the path of fuser, and use it in FUSE code tests: move guestfs-md5.sh to test-data v2v: tests: isolate SHA1 calculation in an own shared function v2v: tests: use guestfs-hashsums.sh for MD5 php: pass $(MAKE) to
2016 Apr 04
2
[PATCH 1/2] Use 'error' function consistently throughout.
...id = fork (); - if (pid == -1) { - perror ("fork"); - exit (EXIT_FAILURE); - } + if (pid == -1) + error (EXIT_FAILURE, errno, "fork"); if (pid == 0) { /* Child - run fuser. */ #ifdef __linux__ diff --git a/fuse/test-fuse.c b/fuse/test-fuse.c index 95a2b3d..35d75d5 100644 --- a/fuse/test-fuse.c +++ b/fuse/test-fuse.c @@ -33,6 +33,8 @@ #include <sys/time.h> #include <sys/types.h> #include <sys/wait.h> +#include <errno.h> +#include <error.h> #ifdef HAVE_ACL #include <sys/acl.h> @@ -86,16 +88,12 @@ main (int ar...