aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2019-03-09 10:30:41 +0000
committerNikolaus Rath <Nikolaus@rath.org>2019-03-09 10:31:18 +0000
commit1c70c870fe688e3bcd3b3dc8e8951a79fcaef435 (patch)
tree0bde0b69842b58796d66c164ea9e1c559b8a4958
parent078c623703123f9c449756c798d55ba859310abc (diff)
downloadlibfuse-1c70c870fe688e3bcd3b3dc8e8951a79fcaef435.tar.gz
Correctly include config.h ("" vs <>)
This isn't a system header. Fixes: #349
-rw-r--r--util/fusermount.c4
-rw-r--r--util/mount.fuse.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/util/fusermount.c b/util/fusermount.c
index 3f13e42..ebc0689 100644
--- a/util/fusermount.c
+++ b/util/fusermount.c
@@ -8,9 +8,9 @@
/* This program does the mounting and unmounting of FUSE filesystems */
#define _GNU_SOURCE /* for clone */
-#include <config.h>
-
+#include "config.h"
#include "mount_util.h"
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/util/mount.fuse.c b/util/mount.fuse.c
index 84e680b..d49e5b2 100644
--- a/util/mount.fuse.c
+++ b/util/mount.fuse.c
@@ -6,7 +6,7 @@
See the file COPYING.
*/
-#include <config.h>
+#include "config.h"
#include <stdio.h>
#include <stdlib.h>