Fixed get_xattr_acl() -- it needed to zero *len_p.
[rsync/rsync.git] / util.c
diff --git a/util.c b/util.c
index 98b94e0..75b6e3f 100644 (file)
--- 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;