1995-06-17 23:02:15 +00:00
|
|
|
/*
|
2011-03-11 15:34:35 -05:00
|
|
|
* Copyright (c) 2004-2005, 2007, 2010-2011
|
2010-06-14 12:19:49 -04:00
|
|
|
* Todd C. Miller <Todd.Miller@courtesan.com>
|
1995-06-17 23:02:15 +00:00
|
|
|
*
|
2004-02-13 21:36:43 +00:00
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
1999-07-31 16:19:50 +00:00
|
|
|
*
|
2004-02-13 21:36:43 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
1995-06-17 23:02:15 +00:00
|
|
|
*/
|
|
|
|
|
2007-06-10 22:18:46 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2001-12-14 19:52:54 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
1995-06-17 23:02:15 +00:00
|
|
|
#include <stdio.h>
|
2004-12-03 18:52:28 +00:00
|
|
|
#if TIME_WITH_SYS_TIME
|
|
|
|
# include <time.h>
|
|
|
|
#endif
|
2004-09-11 16:24:28 +00:00
|
|
|
|
2004-09-07 17:14:52 +00:00
|
|
|
#ifdef HAVE_UTIME_H
|
|
|
|
# include <utime.h>
|
|
|
|
#else
|
2010-09-24 17:01:17 -04:00
|
|
|
# include "compat/utime.h"
|
2004-09-07 17:14:52 +00:00
|
|
|
#endif
|
1995-06-17 23:02:15 +00:00
|
|
|
|
2010-09-07 16:45:19 -04:00
|
|
|
#include "missing.h"
|
2007-06-10 22:18:46 +00:00
|
|
|
|
2004-09-07 17:14:52 +00:00
|
|
|
#ifndef HAVE_UTIMES
|
1999-07-22 10:58:10 +00:00
|
|
|
/*
|
2004-09-07 17:14:52 +00:00
|
|
|
* Emulate utimes() via utime()
|
1995-06-17 23:02:15 +00:00
|
|
|
*/
|
1999-04-10 04:49:03 +00:00
|
|
|
int
|
2010-02-27 09:23:25 -05:00
|
|
|
utimes(const char *file, const struct timeval *times)
|
1995-06-17 23:02:15 +00:00
|
|
|
{
|
2004-09-07 17:14:52 +00:00
|
|
|
if (times != NULL) {
|
|
|
|
struct utimbuf utb;
|
1995-06-18 17:03:15 +00:00
|
|
|
|
2005-04-08 21:04:22 +00:00
|
|
|
utb.actime = (time_t)(times[0].tv_sec + times[0].tv_usec / 1000000);
|
|
|
|
utb.modtime = (time_t)(times[1].tv_sec + times[1].tv_usec / 1000000);
|
2011-01-24 15:15:18 -05:00
|
|
|
return utime(file, &utb);
|
2004-09-07 17:14:52 +00:00
|
|
|
} else
|
2011-01-24 15:15:18 -05:00
|
|
|
return utime(file, NULL);
|
2004-09-07 17:14:52 +00:00
|
|
|
}
|
|
|
|
#endif /* !HAVE_UTIMES */
|
1995-06-17 23:02:15 +00:00
|
|
|
|
2004-09-07 17:14:52 +00:00
|
|
|
#ifdef HAVE_FUTIME
|
|
|
|
/*
|
|
|
|
* Emulate futimes() via futime()
|
|
|
|
*/
|
|
|
|
int
|
2010-02-27 09:23:25 -05:00
|
|
|
futimes(int fd, const struct timeval *times)
|
2004-09-07 17:14:52 +00:00
|
|
|
{
|
|
|
|
if (times != NULL) {
|
|
|
|
struct utimbuf utb;
|
1995-06-17 23:02:15 +00:00
|
|
|
|
2005-04-08 21:04:22 +00:00
|
|
|
utb.actime = (time_t)(times[0].tv_sec + times[0].tv_usec / 1000000);
|
|
|
|
utb.modtime = (time_t)(times[1].tv_sec + times[1].tv_usec / 1000000);
|
2011-01-24 15:15:18 -05:00
|
|
|
return futime(fd, &utb);
|
2004-09-07 17:14:52 +00:00
|
|
|
} else
|
2011-01-24 15:15:18 -05:00
|
|
|
return futime(fd, NULL);
|
1995-06-17 23:02:15 +00:00
|
|
|
}
|
2004-09-07 17:14:52 +00:00
|
|
|
#endif /* HAVE_FUTIME */
|