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


2009-11-15 Werner Baumann (werner.baumann@onlinehome.de) 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> Björn Voigt <bjoernv@users.sourceforge.net>
Dag Wieers <dag@wieers.com> Dag Wieers <dag@wieers.com>
Jim Whitehead <ejw@cse.ucsc.edu> Jim Whitehead <ejw@cse.ucsc.edu>
Will Woods <wwoods@redhat.com>
Marcin Zajączkowski <mszpak@wp.pl> Marcin Zajączkowski <mszpak@wp.pl>

View File

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


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

View File

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


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

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

View File

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


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

View File

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


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

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