Skip to content
Snippets Groups Projects
Commit f020796f authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

Update previous fix: utime() needs <sys/types.h> as well as <utime.h> on Linux

parent a6d9e7d9
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,10 @@
#include <ac/errno.h>
#include <sys/stat.h>
#ifdef HAVE_UTIME_H
#include <utime.h>
# ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
# endif
# include <utime.h>
#endif /* HAVE_UTIME_H */
#include "back-bdb.h"
#include <lutil.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment