From 80c6af722d28617ad35e532d4c4ec420c9f1b6ab Mon Sep 17 00:00:00 2001 From: enami Date: Tue, 3 Mar 2015 00:20:38 +0000 Subject: [PATCH] Fix the name of failed function in warning message. --- bin/cp/utils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/cp/utils.c b/bin/cp/utils.c index 5097d81d733a..76b9002924f6 100644 --- a/bin/cp/utils.c +++ b/bin/cp/utils.c @@ -1,4 +1,4 @@ -/* $NetBSD: utils.c,v 1.43 2015/03/02 03:17:24 enami Exp $ */ +/* $NetBSD: utils.c,v 1.44 2015/03/03 00:20:38 enami Exp $ */ /*- * Copyright (c) 1991, 1993, 1994 @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)utils.c 8.3 (Berkeley) 4/1/94"; #else -__RCSID("$NetBSD: utils.c,v 1.43 2015/03/02 03:17:24 enami Exp $"); +__RCSID("$NetBSD: utils.c,v 1.44 2015/03/03 00:20:38 enami Exp $"); #endif #endif /* not lint */ @@ -68,7 +68,7 @@ set_utimes(const char *file, struct stat *fs) ts[1] = fs->st_mtimespec; if (lutimens(file, ts)) { - warn("lutimes: %s", file); + warn("lutimens: %s", file); return (1); } return (0);