Code

Required hostname not flagging as an error
authorTon Voon <tonvoon@users.sourceforge.net>
Wed, 14 Sep 2005 14:36:00 +0000 (14:36 +0000)
committerTon Voon <tonvoon@users.sourceforge.net>
Wed, 14 Sep 2005 14:36:00 +0000 (14:36 +0000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1220 f882894a-f735-0410-b71e-b25c423dba1c

plugins/check_ping.c

index 6b566608961059c90c8206a8ee94fdcdca347cf9..a6c43c362343d74b32385abf470d1b9b4e0b9884 100644 (file)
@@ -50,7 +50,7 @@ int cpl = UNKNOWN_PACKET_LOSS;
 float wrta = UNKNOWN_TRIP_TIME;
 float crta = UNKNOWN_TRIP_TIME;
 char **addresses = NULL;
 float wrta = UNKNOWN_TRIP_TIME;
 float crta = UNKNOWN_TRIP_TIME;
 char **addresses = NULL;
-int n_addresses;
+int n_addresses = 0;
 int max_addr = 1;
 int max_packets = -1;
 int verbose = 0;
 int max_addr = 1;
 int max_packets = -1;
 int verbose = 0;
@@ -392,6 +392,11 @@ validate_arguments ()
                        usage2 (_("Invalid hostname/address"), addresses[i]);
        }
 
                        usage2 (_("Invalid hostname/address"), addresses[i]);
        }
 
+       if (n_addresses == 0) {
+               printf(_("You must specify a server address or host name\n"));
+               return ERROR;
+       }
+
        return OK;
 }
 
        return OK;
 }