From: Wayne Davison Date: Fri, 2 Nov 2007 20:53:04 +0000 (+0000) Subject: The HAVE_UTIMBUF define changed to HAVE_STRUCT_UTIMBUF. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/4f9b139ab9e8d46895c92865335b729f967abef2 The HAVE_UTIMBUF define changed to HAVE_STRUCT_UTIMBUF. --- diff --git a/util.c b/util.c index 98b94e07..75b6e3fc 100644 --- a/util.c +++ b/util.c @@ -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;