Fix typo in previous

This commit is contained in:
martin 2024-06-01 10:17:12 +00:00
parent 241c9849b3
commit 74b93bff11
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: gzip.c,v 1.126 2024/06/01 09:45:36 tsutsui Exp $ */
/* $NetBSD: gzip.c,v 1.127 2024/06/01 10:17:12 martin Exp $ */
/*
* Copyright (c) 1997-2024 Matthew R. Green
@ -34,7 +34,7 @@
#ifndef lint
__COPYRIGHT("@(#) Copyright (c) 1997-2024 Matthew R. Green. "
"All rights reserved.");
__RCSID("$NetBSD: gzip.c,v 1.126 2024/06/01 09:45:36 tsutsui Exp $");
__RCSID("$NetBSD: gzip.c,v 1.127 2024/06/01 10:17:12 martin Exp $");
#endif /* not lint */
/*
@ -1126,7 +1126,7 @@ copymodes(int fd, const struct stat *sbp, const char *file)
if (fchmod(fd, sb.st_mode) < 0)
maybe_warn("couldn't fchmod: %s", file);
#ifdef !HAVE_NBTOOL_CONFIG_H
#if !HAVE_NBTOOL_CONFIG_H
TIMESPEC_TO_TIMEVAL(&times[0], &sb.st_atimespec);
TIMESPEC_TO_TIMEVAL(&times[1], &sb.st_mtimespec);
if (futimes(fd, times) < 0)