From 74579f986208b82bda2b3e3d3c4b67f69e69f039 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Tue, 10 Jun 2008 18:34:11 +0000 Subject: [PATCH] Fix missing include for PATH_MAX --- ChangeLog | 3 +++ lib/helper.c | 1 + lib/mount_util.c | 1 + 3 files changed, 5 insertions(+) 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) { -- 2.30.2