Annotation of embedaddon/sudo/compat/utimes.c, revision 1.1.1.3

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>