summaryrefslogtreecommitdiffstats
path: root/plugins/check_users.c
diff options
context:
space:
mode:
authorKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-01-13 12:15:16 (GMT)
committerKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-01-13 12:15:16 (GMT)
commit0c3386274ef5002dffc20337ef02407f24d7400c (patch)
tree1e78bac7844a548e56a642b35acfe1fd67342f71 /plugins/check_users.c
parentde5650f28e4e43a7264913953f95a75d8afe23f0 (diff)
downloadmonitoring-plugins-0c3386274ef5002dffc20337ef02407f24d7400c.tar.gz
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
Diffstat (limited to 'plugins/check_users.c')
-rw-r--r--plugins/check_users.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/check_users.c b/plugins/check_users.c
index e39e0d2..565d9e7 100644
--- a/plugins/check_users.c
+++ b/plugins/check_users.c
@@ -48,7 +48,7 @@
48#include "popen.h" 48#include "popen.h"
49#include "utils.h" 49#include "utils.h"
50 50
51#define PROGNAME "check_users" 51const char *progname = "check_users";
52#define REVISION "$Revision$" 52#define REVISION "$Revision$"
53#define COPYRIGHT "1999-2002" 53#define COPYRIGHT "1999-2002"
54#define AUTHOR "Ethan Galstad" 54#define AUTHOR "Ethan Galstad"
@@ -162,14 +162,14 @@ process_arguments (int argc, char **argv)
162 162
163 switch (c) { 163 switch (c) {
164 case '?': /* print short usage statement if args not parsable */ 164 case '?': /* print short usage statement if args not parsable */
165 printf ("%s: Unknown argument: %s\n\n", PROGNAME, optarg); 165 printf ("%s: Unknown argument: %s\n\n", progname, optarg);
166 print_usage (); 166 print_usage ();
167 exit (STATE_UNKNOWN); 167 exit (STATE_UNKNOWN);
168 case 'h': /* help */ 168 case 'h': /* help */
169 print_help (); 169 print_help ();
170 exit (STATE_OK); 170 exit (STATE_OK);
171 case 'V': /* version */ 171 case 'V': /* version */
172 print_revision (PROGNAME, REVISION); 172 print_revision (progname, REVISION);
173 exit (STATE_OK); 173 exit (STATE_OK);
174 case 'c': /* critical */ 174 case 'c': /* critical */
175 if (!is_intnonneg (optarg)) 175 if (!is_intnonneg (optarg))
@@ -207,7 +207,7 @@ process_arguments (int argc, char **argv)
207void 207void
208print_usage (void) 208print_usage (void)
209{ 209{
210 printf ("Usage: %s -w <users> -c <users>\n", PROGNAME); 210 printf ("Usage: %s -w <users> -c <users>\n", progname);
211} 211}
212 212
213 213
@@ -217,7 +217,7 @@ print_usage (void)
217void 217void
218print_help (void) 218print_help (void)
219{ 219{
220 print_revision (PROGNAME, REVISION); 220 print_revision (progname, REVISION);
221 printf 221 printf
222 ("Copyright (c) " COPYRIGHT " " AUTHOR "(" EMAIL ")\n\n" 222 ("Copyright (c) " COPYRIGHT " " AUTHOR "(" EMAIL ")\n\n"
223 "This plugin checks the number of users currently logged in on the local\n" 223 "This plugin checks the number of users currently logged in on the local\n"