summaryrefslogtreecommitdiff
path: root/source4/lib/replace/replace.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2008-05-09 10:47:23 +1000
committerAndrew Bartlett <abartlet@samba.org>2008-05-09 10:47:23 +1000
commit00ebe3df811a9eb7737fa6278d8784500c35bd14 (patch)
treeb9b0291e764d49586bab6388353a59515353a66e /source4/lib/replace/replace.c
parentf446bf59e300a53f4564bcf99d8614b440905147 (diff)
parentca6ac11b46a75bf02cf873c6aedb4f85af227168 (diff)
downloadsamba-00ebe3df811a9eb7737fa6278d8784500c35bd14.tar.gz
samba-00ebe3df811a9eb7737fa6278d8784500c35bd14.tar.bz2
samba-00ebe3df811a9eb7737fa6278d8784500c35bd14.zip
Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into 4-0-local
(This used to be commit 2db0e86fb4abc27eed2d35e1d41122bc89a2c5fe)
Diffstat (limited to 'source4/lib/replace/replace.c')
-rw-r--r--source4/lib/replace/replace.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/source4/lib/replace/replace.c b/source4/lib/replace/replace.c
index 443da2ab24..2c3f14c2df 100644
--- a/source4/lib/replace/replace.c
+++ b/source4/lib/replace/replace.c
@@ -584,3 +584,30 @@ int rep_unsetenv(const char *name)
return 0;
}
#endif
+
+#ifndef HAVE_UTIME
+int rep_utime(const char *filename, const struct utimbuf *buf)
+{
+ errno = ENOSYS;
+ return -1;
+}
+#endif
+
+#ifndef HAVE_UTIMES
+int rep_utimes(const char *filename, const struct timeval tv[2])
+{
+ struct utimbuf u;
+
+ u.actime = tv[0].tv_sec;
+ if (tv[0].tv_usec > 500000) {
+ u.actime += 1;
+ }
+
+ u.modtime = tv[1].tv_sec;
+ if (tv[1].tv_usec > 500000) {
+ u.modtime += 1;
+ }
+
+ return utime(filename, &u);
+}
+#endif