Displaying 3 results from an estimated 3 matches for "have_acl".
2014 Oct 23
17
[PATCH 00/16] Small bits of non-Linux porting
...hus leaving only the
fixed appliance as appliance style) is needed too.
Thanks,
--
Pino
Pino Toscano (16):
build: use the ptsname_r gnulib module
Include string.h where needed
Include sys/wait.h where needed
build: look for and use sys/endian.h
fuse: test-fuse: enclose acl vars within HAVE_ACL
p2v: remove unused variable
normalize iconv handling
builder: rename "program_name" into "progname"
tests: isolate iso_system_id baseline string
Include stdint.h where needed
build: use $(SED) instead of sed when possible
tests/c-api: add a way to skip test when ho...
2015 Oct 29
16
[PATCH 00/16] Refactoring of configure.ac and guestfs.pod
Two (not related to each other) refactorings:
Patches 1-12 split configure.ac into smaller files using the
m4_include mechanism.
Patches 13-15 split out parts of guestfs.pod (ie. guestfs(3)) into
three new manual pages:
guestfs-hacking(3) - how to extend and contribute to libguestfs
guestfs-internals(3) - architecture and internals
guestfs-security(3) - security and CVEs
Patch 16 is a
2016 Apr 04
2
[PATCH 1/2] Use 'error' function consistently throughout.
...inux__
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 argc, char *argv[])
exit (77);
}
- if (access ("/dev/fuse", W_OK) == -1) {
- perror ("/dev/fuse");
- exit (77);
- }
+ if (access ("/dev/fuse", W_OK) == -1)
+ error (77, errno, "access:...