summaryrefslogtreecommitdiff
path: root/src/md5sum.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-05-19 16:28:14 +0200
committerJim Meyering <meyering@redhat.com>2008-05-26 08:40:33 +0200
commit74a106985afed8fbbd880baa9511d5c98b679064 (patch)
tree711b6406523040123d15c683823e2479075cab84 /src/md5sum.c
parentbe2abe31fd4d500a7a320e4e0598fb8bf78db352 (diff)
downloadcoreutils-74a106985afed8fbbd880baa9511d5c98b679064.tar.xz
convert 3-author programs to use proper_name
g grep -E -l 'define AUTHORS "[^,]+", "[^,]+", "[^,]+"$'|xargs perl -pi -e \ 's/(define AUTHORS) ("[^,]+"), ("[^,]+"), ("[^,]+")$/$1 \\\n proper_name ($2), \\\n proper_name ($3), \\\n proper_name ($4)/'
Diffstat (limited to 'src/md5sum.c')
-rw-r--r--src/md5sum.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/md5sum.c b/src/md5sum.c
index f83a7b115..df812b91b 100644
--- a/src/md5sum.c
+++ b/src/md5sum.c
@@ -88,7 +88,10 @@
#define DIGEST_HEX_BYTES (DIGEST_BITS / 4)
#define DIGEST_BIN_BYTES (DIGEST_BITS / 8)
-#define AUTHORS "Ulrich Drepper", "Scott Miller", "David Madore"
+#define AUTHORS \
+ proper_name ("Ulrich Drepper"), \
+ proper_name ("Scott Miller"), \
+ proper_name ("David Madore")
/* The minimum length of a valid digest line. This length does
not include any newline character at the end of a line. */