Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/find Fix missing quote. Resolve automated test fail...
details: https://anonhg.NetBSD.org/src/rev/599c8c875532
branches: trunk
changeset: 816025:599c8c875532
user: pgoyette <pgoyette%NetBSD.org@localhost>
date: Mon Jun 13 02:06:44 2016 +0000
description:
Fix missing quote. Resolve automated test failure.
diffstat:
usr.bin/find/function.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r e66bf484d22e -r 599c8c875532 usr.bin/find/function.c
--- a/usr.bin/find/function.c Mon Jun 13 01:14:29 2016 +0000
+++ b/usr.bin/find/function.c Mon Jun 13 02:06:44 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: function.c,v 1.74 2016/06/13 00:04:40 pgoyette Exp $ */
+/* $NetBSD: function.c,v 1.75 2016/06/13 02:06:44 pgoyette Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "from: @(#)function.c 8.10 (Berkeley) 5/4/95";
#else
-__RCSID("$NetBSD: function.c,v 1.74 2016/06/13 00:04:40 pgoyette Exp $");
+__RCSID("$NetBSD: function.c,v 1.75 2016/06/13 02:06:44 pgoyette Exp $");
#endif
#endif /* not lint */
@@ -1168,7 +1168,7 @@
if (g == NULL) {
if (atoi(gname) == 0 && gname[0] != '0' &&
strcmp(gname, "+0") && strcmp(gname, "-0"))
- errx(1, %s: %s: no such group", opt, gname);
+ errx(1, "%s: %s: no such group", opt, gname);
gid = find_parsenum(new, "-group", gname, NULL);
} else {
Home |
Main Index |
Thread Index |
Old Index