From: Miklos Szeredi Date: Tue, 10 Jun 2008 18:34:11 +0000 (+0000) Subject: Fix missing include for PATH_MAX X-Git-Tag: fuse_2_8_0_pre2~16 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=74579f986208b82bda2b3e3d3c4b67f69e69f039;p=qemu-gpiodev%2Flibfuse.git Fix missing include for PATH_MAX --- diff --git a/ChangeLog b/ChangeLog index 73e02b7..18a479a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,9 @@ * Fix theoretical infinite loops in libfuse. Reported by Szabolcs Szakacsits + * Fix missing include for PATH_MAX. Reported by + Szabolcs Szakacsits + 2008-05-23 Miklos Szeredi * Fix mounting over symlink. Reported by Szabolcs Szakacsits diff --git a/lib/helper.c b/lib/helper.c index 4e7945c..d1cd075 100644 --- a/lib/helper.c +++ b/lib/helper.c @@ -20,6 +20,7 @@ #include #include #include +#include enum { KEY_HELP, diff --git a/lib/mount_util.c b/lib/mount_util.c index fc56255..7db8060 100644 --- a/lib/mount_util.c +++ b/lib/mount_util.c @@ -18,6 +18,7 @@ #include #include #include +#include static int mtab_needs_update(const char *mnt) {