Displaying 4 results from an estimated 4 matches for "ad747ab".
2015 Jul 01
2
Re: URI Handling Patch
Hi All,
Here's the latest patch. I think this should address the problem. The
query string is now only appended to the end of a URI in the HTTP and HTTPS
cases.
The add-uri test now passes, and 'make check' still passes.
-- Gabriel
2015 Sep 29
0
[PATCH 2/4] lib: Move <libintl.h> -> files that use it.
...p.c
index 13d4a97..db0f433 100644
--- a/src/dbdump.c
+++ b/src/dbdump.c
@@ -28,6 +28,7 @@
#include <sys/stat.h>
#include <errno.h>
#include <sys/wait.h>
+#include <libintl.h>
#ifdef HAVE_ENDIAN_H
#include <endian.h>
diff --git a/src/drives.c b/src/drives.c
index ad747ab..dd508f1 100644
--- a/src/drives.c
+++ b/src/drives.c
@@ -34,6 +34,7 @@
#include <arpa/inet.h>
#include <assert.h>
#include <sys/types.h>
+#include <libintl.h>
#include <pcre.h>
diff --git a/src/errors.c b/src/errors.c
index 2d3ae84..c259884 100644
--- a/src/er...
2015 Sep 29
8
[PATCH 1/4] lib: actions: Remove some unused header files.
---
generator/c.ml | 2 --
1 file changed, 2 deletions(-)
diff --git a/generator/c.ml b/generator/c.ml
index 055b683..963cf21 100644
--- a/generator/c.ml
+++ b/generator/c.ml
@@ -1213,9 +1213,7 @@ and generate_client_actions hash () =
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
-#include <sys/types.h>
#include <sys/stat.h>
-#include
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers.
These aren't valid for global names in C++.
(http://stackoverflow.com/a/228797)
These large but completely mechanical patches change the illegal
identifiers to legal ones.
Rich.