diff options
Diffstat (limited to 'plugins/negate.c')
| -rw-r--r-- | plugins/negate.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/negate.c b/plugins/negate.c index c76f5ca0..454ac963 100644 --- a/plugins/negate.c +++ b/plugins/negate.c | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | * | 23 | * |
| 24 | *****************************************************************************/ | 24 | *****************************************************************************/ |
| 25 | 25 | ||
| 26 | #define PROGNAME "negate" | 26 | const char *progname = "negate"; |
| 27 | #define REVISION "$Revision$" | 27 | #define REVISION "$Revision$" |
| 28 | #define COPYRIGHT "2002" | 28 | #define COPYRIGHT "2002" |
| 29 | #define AUTHOR "Karl DeBisschop" | 29 | #define AUTHOR "Karl DeBisschop" |
| @@ -52,10 +52,10 @@ Otherwise, the output state of the wrapped plugin is unchanged.\n" | |||
| 52 | 52 | ||
| 53 | char *command_line; | 53 | char *command_line; |
| 54 | 54 | ||
| 55 | static int process_arguments (int, char **); | 55 | int process_arguments (int, char **); |
| 56 | static int validate_arguments (void); | 56 | int validate_arguments (void); |
| 57 | static void print_usage (void); | 57 | void print_usage (void); |
| 58 | static void print_help (void); | 58 | void print_help (void); |
| 59 | 59 | ||
| 60 | /****************************************************************************** | 60 | /****************************************************************************** |
| 61 | 61 | ||
| @@ -76,7 +76,7 @@ Please note that all tags must be lowercase to use the DocBook XML DTD. | |||
| 76 | <manvolnum>5<manvolnum> | 76 | <manvolnum>5<manvolnum> |
| 77 | </refmeta> | 77 | </refmeta> |
| 78 | <refnamdiv> | 78 | <refnamdiv> |
| 79 | <refname>&PROGNAME;</refname> | 79 | <refname>&progname;</refname> |
| 80 | <refpurpose>&SUMMARY;</refpurpose> | 80 | <refpurpose>&SUMMARY;</refpurpose> |
| 81 | </refnamdiv> | 81 | </refnamdiv> |
| 82 | </refentry> | 82 | </refentry> |
| @@ -174,7 +174,7 @@ main (int argc, char **argv) | |||
| 174 | void | 174 | void |
| 175 | print_help (void) | 175 | print_help (void) |
| 176 | { | 176 | { |
| 177 | print_revision (PROGNAME, REVISION); | 177 | print_revision (progname, REVISION); |
| 178 | printf | 178 | printf |
| 179 | ("Copyright (c) %s %s <%s>\n\n%s\n", | 179 | ("Copyright (c) %s %s <%s>\n\n%s\n", |
| 180 | COPYRIGHT, AUTHOR, EMAIL, SUMMARY); | 180 | COPYRIGHT, AUTHOR, EMAIL, SUMMARY); |
| @@ -196,7 +196,7 @@ print_usage (void) | |||
| 196 | " %s -h for detailed help\n" | 196 | " %s -h for detailed help\n" |
| 197 | " %s -V for version information\n", | 197 | " %s -V for version information\n", |
| 198 | #endif | 198 | #endif |
| 199 | PROGNAME, OPTIONS, PROGNAME, PROGNAME); | 199 | progname, OPTIONS, progname, progname); |
| 200 | } | 200 | } |
| 201 | 201 | ||
| 202 | 202 | ||
| @@ -249,7 +249,7 @@ process_arguments (int argc, char **argv) | |||
| 249 | print_help (); | 249 | print_help (); |
| 250 | exit (EXIT_SUCCESS); | 250 | exit (EXIT_SUCCESS); |
| 251 | case 'V': /* version */ | 251 | case 'V': /* version */ |
| 252 | print_revision (PROGNAME, REVISION); | 252 | print_revision (progname, REVISION); |
| 253 | exit (EXIT_SUCCESS); | 253 | exit (EXIT_SUCCESS); |
| 254 | case 't': /* timeout period */ | 254 | case 't': /* timeout period */ |
| 255 | if (!is_integer (optarg)) | 255 | if (!is_integer (optarg)) |
