Add missing "#include <sys/stat.h>" (bug #28916)
This commit is contained in:
parent
741b565765
commit
d1e2c5efef
@ -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
1
THANKS
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user