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_dig.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/check_dig.c') diff --git a/plugins/check_dig.c b/plugins/check_dig.c index e4f86321..5c6f1e12 100644 --- a/plugins/check_dig.c +++ b/plugins/check_dig.c @@ -25,7 +25,7 @@ #include "utils.h" #include "popen.h" -#define PROGNAME "check_dig" +const char *progname = "check_dig"; #define REVISION "$Revision$" #define COPYRIGHT "2000-2002" #define AUTHOR "Karl DeBisschop" @@ -197,7 +197,7 @@ process_arguments (int argc, char **argv) } break; case 'V': /* version */ - print_revision (PROGNAME, "$Revision$"); + print_revision (progname, "$Revision$"); exit (STATE_OK); case 'h': /* help */ print_help (); @@ -240,7 +240,7 @@ validate_arguments (void) void print_help (void) { - print_revision (PROGNAME, "$Revision$"); + print_revision (progname, "$Revision$"); printf ("Copyright (c) %s %s <%s>\n\n%s\n", COPYRIGHT, AUTHOR, EMAIL, SUMMARY); @@ -272,5 +272,5 @@ print_usage (void) printf ("Usage: %s -H host -l lookup [-t timeout] [-v]\n" " %s --help\n" - " %s --version\n", PROGNAME, PROGNAME, PROGNAME); + " %s --version\n", progname, progname, progname); } -- cgit v1.2.3