[Nagiosplug-checkins] nagiosplug/plugins check_by_ssh.c,1.24,1.25 check_dig.c,1.29,1.30 check_disk.c,1.49,1.50 check_dns.c,1.32,1.33 check_fping.c,1.16,1.17 check_game.c,1.13,1.14 check_hpjd.c,1.22,1.23 check_ldap.c,1.18,1.19 check_load.c,1.18,1.19 check_mrtg.c,1.15,1.16 check_mrtgtraf.c,1.16,1.17 check_mysql.c,1.17,1.18 check_nagios.c,1.14,1.15 check_nt.c,1.27,1.28 check_nwstat.c,1.18,1.19 check_overcr.c,1.11,1.12 check_pgsql.c,1.20,1.21 check_ping.c,1.31,1.32 check_procs.c,1.31,1.32 check_radius.c,1.13,1.14 check_real.c,1.16,1.17 check_smtp.c,1.30,1.31 check_snmp.c,1.41,1.42 check_ssh.c,1.18,1.19 check_swap.c,1.33,1.34 check_tcp.c,1.46,1.47 check_time.c,1.16,1.17 check_udp.c,1.15,1.16 check_ups.c,1.18,1.19 check_users.c,1.12,1.13 negate.c,1.17,1.18

Benoit Mortier opensides at users.sourceforge.net
Thu Dec 2 06:55:12 CET 2004


Update of /cvsroot/nagiosplug/nagiosplug/plugins
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4494/plugins

Modified Files:
	check_by_ssh.c check_dig.c check_disk.c check_dns.c 
	check_fping.c check_game.c check_hpjd.c check_ldap.c 
	check_load.c check_mrtg.c check_mrtgtraf.c check_mysql.c 
	check_nagios.c check_nt.c check_nwstat.c check_overcr.c 
	check_pgsql.c check_ping.c check_procs.c check_radius.c 
	check_real.c check_smtp.c check_snmp.c check_ssh.c 
	check_swap.c check_tcp.c check_time.c check_udp.c check_ups.c 
	check_users.c negate.c 
Log Message:

return of process_arguments() is TRUE not OK !



Index: check_mrtg.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_mrtg.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- check_mrtg.c	1 Dec 2004 23:54:51 -0000	1.15
+++ check_mrtg.c	2 Dec 2004 14:54:35 -0000	1.16
@@ -59,7 +59,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_mrtg: could not parse arguments\n"));
 
 	/* open the MRTG log file for reading */

Index: check_tcp.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_tcp.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- check_tcp.c	2 Dec 2004 01:11:01 -0000	1.46
+++ check_tcp.c	2 Dec 2004 14:54:35 -0000	1.47
@@ -239,7 +239,7 @@
 	server_quit = QUIT;
 	status = strdup ("");
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_tcp: could not parse arguments\n"));
 
 	/* use default expect if none listed in process_arguments() */

Index: check_overcr.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_overcr.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- check_overcr.c	2 Dec 2004 01:11:00 -0000	1.11
+++ check_overcr.c	2 Dec 2004 14:54:35 -0000	1.12
@@ -85,7 +85,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_overcr: could not parse arguments\n"));
 
 	/* initialize alarm signal handling */

Index: check_radius.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_radius.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- check_radius.c	2 Dec 2004 01:11:01 -0000	1.13
+++ check_radius.c	2 Dec 2004 14:54:35 -0000	1.14
@@ -112,7 +112,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_radius: could not parse arguments\n"));
 
 	str = strdup ("dictionary");

Index: check_mrtgtraf.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_mrtgtraf.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- check_mrtgtraf.c	2 Dec 2004 01:11:00 -0000	1.16
+++ check_mrtgtraf.c	2 Dec 2004 14:54:35 -0000	1.17
@@ -62,7 +62,7 @@
 	char incoming_speed_rating[8];
 	char outgoing_speed_rating[8];
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_ldap: could not parse arguments\n"));
 
 	/* open the MRTG log file for reading */

Index: check_by_ssh.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_by_ssh.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- check_by_ssh.c	1 Dec 2004 23:54:51 -0000	1.24
+++ check_by_ssh.c	2 Dec 2004 14:54:35 -0000	1.25
@@ -68,7 +68,7 @@
 	textdomain (PACKAGE);
 
 	/* process arguments */
-	if (process_arguments (argc, argv) == ERROR)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_by_ssh: could not parse arguments\n"));
 
 

Index: check_time.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_time.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- check_time.c	2 Dec 2004 01:11:01 -0000	1.16
+++ check_time.c	2 Dec 2004 14:54:36 -0000	1.17
@@ -62,7 +62,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_time: could not parse arguments\n"));
 
 	/* initialize alarm signal handling */

Index: check_ssh.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_ssh.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- check_ssh.c	2 Dec 2004 01:11:01 -0000	1.18
+++ check_ssh.c	2 Dec 2004 14:54:35 -0000	1.19
@@ -57,7 +57,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_ssh: could not parse arguments\n"));
 
 	/* initialize alarm signal handling */

Index: check_udp.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_udp.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- check_udp.c	2 Dec 2004 01:11:01 -0000	1.15
+++ check_udp.c	2 Dec 2004 14:54:36 -0000	1.16
@@ -51,7 +51,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_udp: could not parse arguments\n"));
 
 	/* initialize alarm signal handling */

Index: check_fping.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_fping.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- check_fping.c	1 Dec 2004 23:54:51 -0000	1.16
+++ check_fping.c	2 Dec 2004 14:54:35 -0000	1.17
@@ -67,7 +67,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) == ERROR)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_fping: could not parse arguments\n"));
 
 	server = strscpy (server, server_name);

Index: check_users.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_users.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- check_users.c	1 Dec 2004 23:54:51 -0000	1.12
+++ check_users.c	2 Dec 2004 14:54:36 -0000	1.13
@@ -50,7 +50,7 @@
 
 	perf = strdup("");
 
-	if (process_arguments (argc, argv) == ERROR)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_users: could not parse arguments\n"));
 
 	/* run the command */

Index: check_ping.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_ping.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- check_ping.c	2 Dec 2004 01:11:00 -0000	1.31
+++ check_ping.c	2 Dec 2004 14:54:35 -0000	1.32
@@ -78,7 +78,7 @@
 	addresses = malloc (sizeof(char*) * max_addr);
 	addresses[0] = NULL;
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_ping: could not parse arguments\n"));
 
 	/* Set signal handling and alarm */

Index: check_dns.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_dns.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- check_dns.c	2 Dec 2004 01:11:00 -0000	1.32
+++ check_dns.c	2 Dec 2004 14:54:35 -0000	1.33
@@ -72,9 +72,8 @@
 		return STATE_UNKNOWN;
 	}
 
-	if (process_arguments (argc, argv) != OK) {
+	if (process_arguments (argc, argv) != TRUE) {
 		usage (_("check_dns: could not parse arguments\n"));
-		return STATE_UNKNOWN;
 	}
 
 	/* get the command to run */

Index: check_swap.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_swap.c,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- check_swap.c	1 Dec 2004 23:54:51 -0000	1.33
+++ check_swap.c	2 Dec 2004 14:54:35 -0000	1.34
@@ -89,7 +89,7 @@
 	tmp_status = strdup ("");
 	perf = strdup ("");
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("Incorrect arguments supplied\n"));
 
 #ifdef HAVE_PROC_MEMINFO

Index: check_hpjd.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_hpjd.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- check_hpjd.c	1 Dec 2004 23:54:51 -0000	1.22
+++ check_hpjd.c	2 Dec 2004 14:54:35 -0000	1.23
@@ -84,7 +84,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_hpjd: could not parse arguments\n"));
 
 	/* removed ' 2>1' at end of command 10/27/1999 - EG */

Index: check_snmp.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_snmp.c,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- check_snmp.c	2 Dec 2004 01:11:01 -0000	1.41
+++ check_snmp.c	2 Dec 2004 14:54:35 -0000	1.42
@@ -156,7 +156,7 @@
 	output_delim = strdup (DEFAULT_OUTPUT_DELIMITER);
 	miblist = strdup (DEFAULT_MIBLIST);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_snmp: could not parse arguments\n"));
 
 	/* create the command line to execute */

Index: check_real.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_real.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- check_real.c	2 Dec 2004 01:11:01 -0000	1.16
+++ check_real.c	2 Dec 2004 14:54:35 -0000	1.17
@@ -64,7 +64,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_real: could not parse arguments\n"));
 
 	/* initialize alarm signal handling */

Index: check_mysql.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_mysql.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- check_mysql.c	2 Dec 2004 01:11:00 -0000	1.17
+++ check_mysql.c	2 Dec 2004 14:54:35 -0000	1.18
@@ -55,7 +55,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_mysql: could not parse arguments\n"));
 
 	/* initialize mysql  */

Index: check_dig.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_dig.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- check_dig.c	1 Dec 2004 23:54:51 -0000	1.29
+++ check_dig.c	2 Dec 2004 14:54:35 -0000	1.30
@@ -68,7 +68,7 @@
 	if (signal (SIGALRM, popen_timeout_alarm_handler) == SIG_ERR)
 		usage (_("Cannot catch SIGALRM\n"));
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("Could not parse arguments\n"));
 
 	/* get the command to run */

Index: check_ldap.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_ldap.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- check_ldap.c	1 Dec 2004 23:54:51 -0000	1.18
+++ check_ldap.c	2 Dec 2004 14:54:35 -0000	1.19
@@ -72,7 +72,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) == ERROR)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_ldap: could not parse arguments\n"));
 
 	/* initialize alarm signal handling */

Index: check_ups.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_ups.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- check_ups.c	2 Dec 2004 04:36:58 -0000	1.18
+++ check_ups.c	2 Dec 2004 14:54:36 -0000	1.19
@@ -111,7 +111,7 @@
 	data = strdup ("");
 	message = strdup ("");
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_ups: could not parse arguments\n"));
 
 	/* initialize alarm signal handling */

Index: check_disk.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_disk.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- check_disk.c	1 Dec 2004 23:54:51 -0000	1.49
+++ check_disk.c	2 Dec 2004 14:54:35 -0000	1.50
@@ -163,7 +163,7 @@
 
 	mount_list = read_filesystem_list (0);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_disk: could not parse arguments\n"));
 
 	for (me = mount_list; me; me = me->me_next) {

Index: check_nwstat.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_nwstat.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- check_nwstat.c	2 Dec 2004 01:11:00 -0000	1.18
+++ check_nwstat.c	2 Dec 2004 14:54:35 -0000	1.19
@@ -121,7 +121,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments(argc,argv) != OK)
+	if (process_arguments(argc,argv) != TRUE)
 		usage (_("check_nwstat: could not parse arguments\n"));
 
 	/* initialize alarm signal handling */

Index: check_pgsql.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_pgsql.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- check_pgsql.c	2 Dec 2004 01:11:00 -0000	1.20
+++ check_pgsql.c	2 Dec 2004 14:54:35 -0000	1.21
@@ -132,7 +132,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_pgsql: could not parse arguments\n"));
 
 	/* Set signal handling and alarm */

Index: check_smtp.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_smtp.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- check_smtp.c	1 Dec 2004 23:54:51 -0000	1.30
+++ check_smtp.c	2 Dec 2004 14:54:35 -0000	1.31
@@ -88,7 +88,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_smtp: could not parse arguments\n"));
 
 	/* initialize the HELO command with the localhostname */

Index: check_game.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_game.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- check_game.c	2 Dec 2004 01:11:00 -0000	1.13
+++ check_game.c	2 Dec 2004 14:54:35 -0000	1.14
@@ -67,7 +67,7 @@
 
 //	result = process_arguments (argc, argv);
 	
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_game: could not parse arguments\n"));
 
 /*	if (result != OK) {

Index: check_nagios.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_nagios.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- check_nagios.c	2 Dec 2004 01:11:00 -0000	1.14
+++ check_nagios.c	2 Dec 2004 14:54:35 -0000	1.15
@@ -65,7 +65,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_nagios: could not parse arguments\n"));
 
 	/* Set signal handling and alarm */

Index: check_procs.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_procs.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- check_procs.c	2 Dec 2004 01:11:01 -0000	1.31
+++ check_procs.c	2 Dec 2004 14:54:35 -0000	1.32
@@ -115,7 +115,7 @@
 	asprintf (&metric_name, "PROCS");
 	metric = METRIC_PROCS;
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_procs: could not parse arguments\n"));
 
 	/* Set signal handling and alarm timeout */

Index: negate.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/negate.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- negate.c	2 Dec 2004 01:11:01 -0000	1.17
+++ negate.c	2 Dec 2004 14:54:36 -0000	1.18
@@ -83,7 +83,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("negate: could not parse arguments\n"));
 
 	/* Set signal handling and alarm */

Index: check_nt.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_nt.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- check_nt.c	2 Dec 2004 01:11:00 -0000	1.27
+++ check_nt.c	2 Dec 2004 14:54:35 -0000	1.28
@@ -110,7 +110,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if(process_arguments(argc,argv) != OK)
+	if(process_arguments(argc,argv) != TRUE)
 		usage (_("check_nt: could not parse arguments\n"));
 
 	/* initialize alarm signal handling */

Index: check_load.c
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_load.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- check_load.c	2 Dec 2004 01:11:00 -0000	1.18
+++ check_load.c	2 Dec 2004 14:54:35 -0000	1.19
@@ -73,7 +73,7 @@
 	bindtextdomain (PACKAGE, LOCALEDIR);
 	textdomain (PACKAGE);
 
-	if (process_arguments (argc, argv) != OK)
+	if (process_arguments (argc, argv) != TRUE)
 		usage (_("check_load: could not parse arguments\n"));
 
 #if HAVE_GETLOADAVG==1





More information about the Commits mailing list