Displaying 1 result from an estimated 1 matches for "c0e3927".
Did you mean:
003927
2009 Sep 17
1
[PATCH] Fix code which looked for leaked FDs between each command.
...ux --with-tests --no-libtool --macro-prefix=gl hash ignore-value manywarnings warnings
# Specification in the form of a few gnulib-tool.m4 macro invocations:
gl_LOCAL_DIR([])
gl_MODULES([
hash
+ ignore-value
manywarnings
warnings
])
diff --git a/daemon/proto.c b/daemon/proto.c
index c0e3927..c22bbee 100644
--- a/daemon/proto.c
+++ b/daemon/proto.c
@@ -29,6 +29,8 @@
#include <rpc/types.h>
#include <rpc/xdr.h>
+#include "ignore-value.h"
+
#include "daemon.h"
#include "../src/guestfs_protocol.h"
@@ -53,13 +55,11 @@ main_loop (int _sock)...