]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
define and use AUTHORS
authorJim Meyering <jim@meyering.net>
Fri, 26 Mar 1999 05:17:17 +0000 (05:17 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 26 Mar 1999 05:17:17 +0000 (05:17 +0000)
src/chgrp.c
src/chmod.c
src/chown.c

index 891c275e7b27dc82f139ac016143dade8c665b23..a75bc90f04420c96753734202d229541f8edd9dd 100644 (file)
@@ -34,6 +34,8 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "chgrp"
 
+#define AUTHORS "David MacKenzie"
+
 /* MAXUID may come from limits.h *or* sys/params.h (via system.h) above. */
 #ifndef MAXUID
 # define MAXUID UID_T_MAX
@@ -360,7 +362,7 @@ main (int argc, char **argv)
          verbosity = V_high;
          break;
        case_GETOPT_HELP_CHAR;
-       case_GETOPT_VERSION_CHAR (PROGRAM_NAME, "David MacKenzie");
+       case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
        default:
          usage (1);
        }
index 40597b7d1d5d2cf67e1b0e69a96e580b30a84586..e2209630792a34cab04698367baf55ef356bae6d 100644 (file)
@@ -33,6 +33,8 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "chmod"
 
+#define AUTHORS "David MacKenzie"
+
 enum Change_status
 {
   CH_SUCCEEDED,
@@ -326,7 +328,7 @@ main (int argc, char **argv)
          verbosity = V_high;
          break;
        case_GETOPT_HELP_CHAR;
-       case_GETOPT_VERSION_CHAR (PROGRAM_NAME, "David MacKenzie");
+       case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
        default:
          usage (1);
        }
index 0904de6c3959b02416f3288027acef422ac3da26..e462931f47cca564fdacca662d38de32fb048453 100644 (file)
@@ -45,6 +45,8 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "chown"
 
+#define AUTHORS "David MacKenzie"
+
 #ifndef _POSIX_VERSION
 struct passwd *getpwnam ();
 struct group *getgrnam ();
@@ -361,7 +363,7 @@ main (int argc, char **argv)
          verbosity = V_high;
          break;
        case_GETOPT_HELP_CHAR;
-       case_GETOPT_VERSION_CHAR (PROGRAM_NAME, "David MacKenzie");
+       case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
        default:
          usage (1);
        }