fix typo in changelog
[debian/sudo] / utimes.c
1 /*
2  * Copyright (c) 2004-2005 Todd C. Miller <Todd.Miller@courtesan.com>
3  *
4  * Permission to use, copy, modify, and distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 #include <config.h>
18
19 #include <sys/types.h>
20 #include <sys/time.h>
21 #include <stdio.h>
22 #if TIME_WITH_SYS_TIME
23 #include <time.h>
24 #endif
25
26 #ifdef HAVE_UTIME_H
27 # include <utime.h>
28 #else
29 # include <emul/utime.h>
30 #endif
31
32 #include <compat.h>
33
34 #ifndef lint
35 __unused static const char rcsid[] = "$Sudo: utimes.c,v 1.8.2.3 2007/06/12 00:56:43 millert Exp $";
36 #endif /* lint */
37
38 #ifndef HAVE_UTIMES
39 /*
40  * Emulate utimes() via utime()
41  */
42 int
43 utimes(file, times)
44     const char *file;
45     const struct timeval *times;
46 {
47     if (times != NULL) {
48         struct utimbuf utb;
49
50         utb.actime = (time_t)(times[0].tv_sec + times[0].tv_usec / 1000000);
51         utb.modtime = (time_t)(times[1].tv_sec + times[1].tv_usec / 1000000);
52         return(utime(file, &utb));
53     } else
54         return(utime(file, NULL));
55 }
56 #endif /* !HAVE_UTIMES */
57
58 #ifdef HAVE_FUTIME
59 /*
60  * Emulate futimes() via futime()
61  */
62 int
63 futimes(fd, times)
64     int fd;
65     const struct timeval *times;
66 {
67     if (times != NULL) {
68         struct utimbuf utb;
69
70         utb.actime = (time_t)(times[0].tv_sec + times[0].tv_usec / 1000000);
71         utb.modtime = (time_t)(times[1].tv_sec + times[1].tv_usec / 1000000);
72         return(futime(fd, &utb));
73     } else
74         return(futime(fd, NULL));
75 }
76 #endif /* HAVE_FUTIME */