1995-06-17 23:02:15 +00:00
|
|
|
/*
|
2004-09-07 17:14:52 +00:00
|
|
|
* Copyright (c) 2004 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
|
|
|
*/
|
|
|
|
|
2001-12-14 19:52:54 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
2004-09-07 17:14:52 +00:00
|
|
|
#include <time.h>
|
1995-06-17 23:02:15 +00:00
|
|
|
#include <stdio.h>
|
2004-09-07 17:14:52 +00:00
|
|
|
#ifdef HAVE_UTIME_H
|
|
|
|
# include <utime.h>
|
|
|
|
#else
|
|
|
|
# include <emul/utime.h>
|
|
|
|
#endif
|
1995-06-17 23:02:15 +00:00
|
|
|
|
2004-09-07 17:14:52 +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 */
|
|
|
|
|
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
|
2004-09-07 17:14:52 +00:00
|
|
|
utimes(file, times)
|
1999-07-22 10:58:10 +00:00
|
|
|
const char *file;
|
2004-09-07 17:14:52 +00:00
|
|
|
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
|
|
|
|
2004-09-07 17:14:52 +00:00
|
|
|
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
|
|
|
|
2004-09-07 17:14:52 +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
|
|
|
|
2004-09-07 17:14:52 +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
|
|
|
}
|
2004-09-07 17:14:52 +00:00
|
|
|
#endif /* HAVE_FUTIME */
|