aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Karl DeBisschop <kdebisschop@users.sourceforge.net> 2003-01-29 06:15:32 +0000
committerGravatar Karl DeBisschop <kdebisschop@users.sourceforge.net> 2003-01-29 06:15:32 +0000
commit95c6efcc5eb8f8d2fcf4c1a6a9f9067d0ec2ba6c (patch)
tree20bbdfa27d1a983bfc1793906ba348667f52301c
parent167ed8f193d7d80bc23ecd82c80f8143e74d4ec4 (diff)
downloadmonitoring-plugins-95c6efcc5eb8f8d2fcf4c1a6a9f9067d0ec2ba6c.tar.gz
1.8
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@266 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r--plugins/check_by_ssh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_by_ssh.c b/plugins/check_by_ssh.c
index 34e67274..0cffaeb2 100644
--- a/plugins/check_by_ssh.c
+++ b/plugins/check_by_ssh.c
@@ -249,12 +249,12 @@ process_arguments (int argc, char **argv)
passive = TRUE;
break;
case 's': /* description of service to check */
- service = realloc (service, ++services);
+ service = realloc (service, (++services) * sizeof(char *));
p1 = optarg;
while (p2 = index (p1, ':')) {
*p2 = '\0';
asprintf (&service[services-1], "%s", p1);
- service = realloc (service, ++services);
+ service = realloc (service, (++services) * sizeof(char *));
p1 = p2 + 1;
}
asprintf (&service[services-1], "%s", p1);