Commit 4f9b139a authored by Wayne Davison's avatar Wayne Davison

The HAVE_UTIMBUF define changed to HAVE_STRUCT_UTIMBUF.

parent 9f802c72
......@@ -152,7 +152,7 @@ int set_modtime(const char *fname, time_t modtime, mode_t mode)
}
# endif
return utimes(fname, t);
#elif defined HAVE_UTIMBUF
#elif defined HAVE_STRUCT_UTIMBUF
struct utimbuf tbuf;
tbuf.actime = time(NULL);
tbuf.modtime = modtime;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment