From e9b8e5a4d19f5ae266bda6d31aeb3c2cf5361a2d Mon Sep 17 00:00:00 2001 From: Paras Chetal Date: Fri, 9 Jun 2017 04:45:38 +0530 Subject: [PATCH] Fix include header syntax --- qrexec-lib/copy-file.c | 2 +- qrexec-lib/unpack.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qrexec-lib/copy-file.c b/qrexec-lib/copy-file.c index 9c1111f..7231bc3 100644 --- a/qrexec-lib/copy-file.c +++ b/qrexec-lib/copy-file.c @@ -1,5 +1,5 @@ #include -#include +#include "ioall.h" #include "libqubes-rpc-filecopy.h" #include "crc32.h" diff --git a/qrexec-lib/unpack.c b/qrexec-lib/unpack.c index 3f548da..4d3acf5 100644 --- a/qrexec-lib/unpack.c +++ b/qrexec-lib/unpack.c @@ -1,6 +1,5 @@ #define _GNU_SOURCE /* For O_NOFOLLOW. */ #include -#include #include #include #include @@ -10,6 +9,7 @@ #include #include #include "libqubes-rpc-filecopy.h" +#include "ioall.h" #include "crc32.h" char untrusted_namebuf[MAX_PATH_LENGTH];