search for: 1dac58e

Displaying 3 results from an estimated 3 matches for "1dac58e".

Did you mean: 1d1c54e
2015 Sep 29
0
[PATCH 2/4] lib: Move <libintl.h> -> files that use it.
...c368f21 100644 --- a/src/launch-uml.c +++ b/src/launch-uml.c @@ -30,6 +30,7 @@ #include <sys/socket.h> #include <sys/wait.h> #include <sys/signal.h> +#include <libintl.h> #include "cloexec.h" diff --git a/src/launch-unix.c b/src/launch-unix.c index dae4389..1dac58e 100644 --- a/src/launch-unix.c +++ b/src/launch-unix.c @@ -25,6 +25,7 @@ #include <sys/socket.h> #include <sys/un.h> #include <string.h> +#include <libintl.h> #include "guestfs.h" #include "guestfs-internal.h" diff --git a/src/launch.c b/src/launch...
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 Sep 29
0
[PATCH 4/4] lib: Remove unused header files.
...> #include <sys/wait.h> @@ -36,7 +34,6 @@ #include "guestfs.h" #include "guestfs-internal.h" -#include "guestfs-internal-actions.h" #include "guestfs_protocol.h" /* Per-handle data. */ diff --git a/src/launch-unix.c b/src/launch-unix.c index 1dac58e..5cce9c1 100644 --- a/src/launch-unix.c +++ b/src/launch-unix.c @@ -21,15 +21,12 @@ #include <stdio.h> #include <stdlib.h> #include <unistd.h> -#include <fcntl.h> #include <sys/socket.h> -#include <sys/un.h> #include <string.h> #include <libintl.h&...