summaryrefslogtreecommitdiff
path: root/src/test.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-09-18 18:22:23 +0000
committerJim Meyering <jim@meyering.net>2003-09-18 18:22:23 +0000
commit3280bf4b5571fd4425c7e6f7d765d08b77ce8d8a (patch)
tree2e9536eaec036a182d71472659ee9cc055c1c31b /src/test.c
parent588291785cbab06fe461c6a45e4eba53e4e2f13f (diff)
downloadcoreutils-3280bf4b5571fd4425c7e6f7d765d08b77ce8d8a.tar.xz
Update AUTHORS definition to be a comma-separated list of strings and/or update
the call to parse_long_options so that `AUTHORS, NULL' are the last parameters.
Diffstat (limited to 'src/test.c')
-rw-r--r--src/test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test.c b/src/test.c
index fa00a396b..24d347e64 100644
--- a/src/test.c
+++ b/src/test.c
@@ -1058,7 +1058,7 @@ INTEGER may also be -l STRING, which evaluates to the length of STRING.\n\
# define main test_command
#endif
-#define AUTHORS N_ ("Kevin Braunsdorf and Matthew Bradburn")
+#define AUTHORS "Kevin Braunsdorf", "Matthew Bradburn"
/*
* [:
@@ -1101,7 +1101,7 @@ main (int margc, char **margv)
if (margc < 2 || strcmp (margv[margc - 1], "]") != 0)
{
parse_long_options (margc, margv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
- AUTHORS, usage);
+ usage, AUTHORS, NULL);
test_syntax_error (_("missing `]'\n"), NULL);
}