summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-01-07 09:21:34 +0000
committerJim Meyering <jim@meyering.net>2001-01-07 09:21:34 +0000
commit8c07ff563bd1cd3f0bff88b5a104073585e26ae1 (patch)
tree24fe99f09ea5a886c6fbb47efb4c1061663bcce2 /src
parentfa997616ff7030e3f74fc18996e1f90ae5f88a05 (diff)
downloadcoreutils-8c07ff563bd1cd3f0bff88b5a104073585e26ae1.tar.xz
(parse_group): Normalize spelling.
Diffstat (limited to 'src')
-rw-r--r--src/chgrp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chgrp.c b/src/chgrp.c
index bc840d65d..60a18a63d 100644
--- a/src/chgrp.c
+++ b/src/chgrp.c
@@ -1,5 +1,5 @@
/* chgrp -- change group ownership of files
- Copyright (C) 89, 90, 91, 1995-2000 Free Software Foundation, Inc.
+ Copyright (C) 89, 90, 91, 1995-2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -91,7 +91,7 @@ parse_group (const char *name, gid_t *g)
struct group *grp;
if (*name == '\0')
- error (1, 0, _("can not change to null group"));
+ error (1, 0, _("cannot change to null group"));
grp = getgrnam (name);
if (grp == NULL)