From c4e7010b9d25b07650ed965243512190f75e8b9c Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 12 Feb 2014 14:04:30 +0000 Subject: [PATCH 6/7] mountd: define _GNU_SOURCE for statfs64 and use standard dev_t Signed-off-by: Natanael Copa --- utils/mountd/cache.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c index ca35de2..0a4eba5 100644 --- a/utils/mountd/cache.c +++ b/utils/mountd/cache.c @@ -11,6 +11,10 @@ #include #endif +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif + #include #include #include @@ -1334,7 +1338,7 @@ static int cache_export_ent(char *domain, struct exportent *exp, char *path) */ struct stat stb; size_t l = strlen(exp->e_path); - __dev_t dev; + dev_t dev; if (strlen(path) <= l || path[l] != '/' || strncmp(exp->e_path, path, l) != 0) -- 1.8.5.3