From b0c399ce6015e8a96231d5e5e99e603d44e0cf57 Mon Sep 17 00:00:00 2001 From: Jeff Layton Date: Fri, 15 May 2009 14:31:28 -0400 Subject: mount.cifs: directly include sys/stat.h in mtab.c This file is mysteriously getting included when built via the makefile, but when you try to build mtab.o by hand it fails to build. Directly include it to remove any ambiguity. Signed-off-by: Jeff Layton --- source3/client/mtab.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/client/mtab.c b/source3/client/mtab.c index 93fbd11359..70789bcb9d 100644 --- a/source3/client/mtab.c +++ b/source3/client/mtab.c @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include -- cgit