Add missing "#include <sys/stat.h>" (bug #28916)

This commit is contained in:
wbaumann 2010-02-16 19:46:48 +00:00
parent 741b565765
commit d1e2c5efef
6 changed files with 20 additions and 1 deletions

View File

@ -1,9 +1,13 @@
ChangeLog for davfs2
--------------------

2010-02-16 Werner Baumann (werner.baumann@onlinehome.de)
* dav_coda.c, dav_fuse.c, kernel_interface.c, webdav.c:
Add missing "#include <sys/stat.h> (bug #28916).

2010-01-21 Werner Baumann (werner.baumann@onlinehome.de)
* mount_davfs.c, parse_secrets:
Wrong assignment of password from pam_mount
Wrong assignment of password from pam_mount.
(bug #28706);

2009-11-15 Werner Baumann (werner.baumann@onlinehome.de)

1
THANKS
View File

@ -82,4 +82,5 @@ Lars Uffmann <lu@cachescrubber.org>
Björn Voigt <bjoernv@users.sourceforge.net>
Dag Wieers <dag@wieers.com>
Jim Whitehead <ejw@cse.ucsc.edu>
Will Woods <wwoods@redhat.com>
Marcin Zajączkowski <mszpak@wp.pl>

View File

@ -46,6 +46,9 @@
#include <unistd.h>
#endif

#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif

View File

@ -42,6 +42,10 @@
#include <unistd.h>
#endif

#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif

#include "defaults.h"
#include "mount_davfs.h"
#include "cache.h"

View File

@ -48,6 +48,9 @@
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif

#include "defaults.h"
#include "mount_davfs.h"

View File

@ -48,6 +48,10 @@
#include <unistd.h>
#endif

#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif

#include <ne_alloc.h>
#include <ne_auth.h>
#include <ne_basic.h>