]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(parse_group): Normalize spelling.
authorJim Meyering <jim@meyering.net>
Sun, 7 Jan 2001 09:21:34 +0000 (09:21 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 7 Jan 2001 09:21:34 +0000 (09:21 +0000)
src/chgrp.c

index bc840d65db1766b4e67e2a2a2b5c3ac5177106ce..60a18a63d006a43d45bba6befbf618e6e8888b28 100644 (file)
@@ -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)