X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fexim_lock.c;h=dbdd971297583fc26daf6aca9e20fc6167742a26;hb=a75ebe0dcc5faeb915cacb0d9db66d2475789116;hp=074a951d1036b9c3b15a01bf8d49df833293391f;hpb=b0fa97c1588ce368d0fd490472d2a7f552c45dbf;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/exim_lock.c b/src/src/exim_lock.c index 074a951d1..dbdd97129 100644 --- a/src/src/exim_lock.c +++ b/src/src/exim_lock.c @@ -87,7 +87,6 @@ the other stuff in os.c, so force the other macros to omit it. */ static void sigalrm_handler(int sig) { -sig = sig; /* Keep picky compilers happy */ sigalrm_seen = TRUE; } @@ -584,16 +583,28 @@ else if (restore_times) { struct stat strestore; -#ifdef EXIM_HAVE_OPENAT +#ifdef EXIM_HAVE_FUTIMENS int fd = open(filename, O_RDWR); /* use fd for both get & restore */ struct timespec tt[2]; - fstat(fd, &strestore); + if (fd < 0) + { + printf("open '%s': %s\n", filename, strerror(errno)); + yield = 1; + goto CLEAN_UP; + } + if (fstat(fd, &strestore) != 0) + { + printf("fstat '%s': %s\n", filename, strerror(errno)); + yield = 1; + close(fd); + goto CLEAN_UP; + } i = system(command); tt[0] = strestore.st_atim; tt[1] = strestore.st_mtim; - futimens(fd, tt); - close(fd); + (void) futimens(fd, tt); + (void) close(fd); #else struct utimbuf ut;