From 0c3386274ef5002dffc20337ef02407f24d7400c Mon Sep 17 00:00:00 2001 From: Karl DeBisschop Date: Mon, 13 Jan 2003 12:15:16 +0000 Subject: convert PROGANE from a define to a const char git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@238 f882894a-f735-0410-b71e-b25c423dba1c --- plugins/check_http.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/check_http.c') diff --git a/plugins/check_http.c b/plugins/check_http.c index bbc76dae..de7a2db7 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c @@ -23,7 +23,7 @@ * *****************************************************************************/ -#define PROGNAME "check_http" +const char *progname = "check_http"; #define REVISION "$Revision$" #define COPYRIGHT "1999-2001" #define AUTHORS "Ethan Galstad/Karl DeBisschop" @@ -328,7 +328,7 @@ process_arguments (int argc, char **argv) exit (STATE_OK); break; case 'V': /* version */ - print_revision (PROGNAME, REVISION); + print_revision (progname, REVISION); exit (STATE_OK); break; case 't': /* timeout period */ @@ -1058,7 +1058,7 @@ my_close (void) void print_help (void) { - print_revision (PROGNAME, REVISION); + print_revision (progname, REVISION); printf ("Copyright (c) %s %s <%s>\n\n%s\n", COPYRIGHT, AUTHORS, EMAIL, SUMMARY); @@ -1083,5 +1083,5 @@ print_usage (void) " %s -h for detailed help\n" " %s -V for version information\n", #endif - PROGNAME, OPTIONS, PROGNAME, PROGNAME); + progname, OPTIONS, progname, progname); } -- cgit v1.2.3-74-g34f1