2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-23 10:27:45 +00:00
sudo/compat/utimes.c

70 lines
1.8 KiB
C
Raw Normal View History

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
*
* 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.
*
* 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
*/
#include <config.h>
#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
#ifdef HAVE_UTIME_H
# include <utime.h>
#else
# include "compat/utime.h"
#endif
1995-06-17 23:02:15 +00:00
#include "missing.h"
#ifndef HAVE_UTIMES
1999-07-22 10:58:10 +00:00
/*
* Emulate utimes() via utime()
1995-06-17 23:02:15 +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
{
if (times != NULL) {
struct utimbuf utb;
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);
return utime(file, &utb);
} else
return utime(file, NULL);
}
#endif /* !HAVE_UTIMES */
1995-06-17 23:02:15 +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)
{
if (times != NULL) {
struct utimbuf utb;
1995-06-17 23:02:15 +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);
return futime(fd, &utb);
} else
return futime(fd, NULL);
1995-06-17 23:02:15 +00:00
}
#endif /* HAVE_FUTIME */