2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-27 20:38:22 +00:00
sudo/utimes.c

72 lines
1.7 KiB
C
Raw Normal View History

1995-06-17 23:02:15 +00:00
/*
* Copyright (c) 2004 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 <sys/types.h>
#include <sys/time.h>
#include <time.h>
1995-06-17 23:02:15 +00:00
#include <stdio.h>
#ifdef HAVE_UTIME_H
# include <utime.h>
#else
# include <emul/utime.h>
#endif
1995-06-17 23:02:15 +00:00
#include "config.h"
1995-06-17 23:02:15 +00:00
1998-11-18 04:16:13 +00:00
#ifndef lint
1999-01-17 23:16:20 +00:00
static const char rcsid[] = "$Sudo$";
1998-11-18 04:16:13 +00:00
#endif /* lint */
#ifndef HAVE_UTIMES
1999-07-22 10:58:10 +00:00
/*
* Emulate utimes() via utime()
1995-06-17 23:02:15 +00:00
*/
int
utimes(file, times)
1999-07-22 10:58:10 +00:00
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;
utb.modtime = (time_t)times[1].tv_sec;
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
futimes(fd, times)
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;
utb.modtime = (time_t)times[1].tv_sec;
return(futime(fd, &utb));
} else
return(futime(fd, NULL));
1995-06-17 23:02:15 +00:00
}
#endif /* HAVE_FUTIME */