summaryrefslogtreecommitdiffstats
path: root/plugins/check_snmp.c
diff options
context:
space:
mode:
authorMatthias Eble <psychotrahe@users.sourceforge.net>2008-07-09 21:53:12 (GMT)
committerMatthias Eble <psychotrahe@users.sourceforge.net>2008-07-09 21:53:12 (GMT)
commitbe144b672094a11b6a670df9562e26e6a56ff03f (patch)
tree6ad84d3ac28b302694b8b7803fae67a3bb28988c /plugins/check_snmp.c
parenta25083faf9c4149d82b9725b61bbc72dc956621c (diff)
downloadmonitoring-plugins-be144b672094a11b6a670df9562e26e6a56ff03f.tar.gz
check_snmp now only prints perfdata for non numeric values (Joerg Linge #1867716)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2021 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_snmp.c')
-rw-r--r--plugins/check_snmp.c18
1 files changed, 11 insertions, 7 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index 0acade2..544c5c0 100644
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
@@ -228,14 +228,14 @@ main (int argc, char **argv)
228 228
229 strncat(perfstr, "| ", sizeof(perfstr)-strlen(perfstr)-1); 229 strncat(perfstr, "| ", sizeof(perfstr)-strlen(perfstr)-1);
230 while (ptr) { 230 while (ptr) {
231 char *foo; 231 char *foo, *ptr2;
232 unsigned int copylen; 232 unsigned int copylen;
233 233
234 foo = strstr (ptr, delimiter); 234 foo = strstr (ptr, delimiter);
235 copylen = foo-ptr; 235 copylen = foo-ptr;
236 if (copylen > sizeof(perfstr)-strlen(perfstr)-1) 236 if (copylen > sizeof(perfstr)-strlen(perfstr)-1)
237 copylen = sizeof(perfstr)-strlen(perfstr)-1; 237 copylen = sizeof(perfstr)-strlen(perfstr)-1;
238 strncat(perfstr, ptr, copylen); 238 ptr2 = ptr;
239 ptr = foo; 239 ptr = foo;
240 240
241 if (ptr == NULL) 241 if (ptr == NULL)
@@ -368,11 +368,15 @@ main (int argc, char **argv)
368 368
369 i++; 369 i++;
370 370
371 strncat(perfstr, "=", sizeof(perfstr)-strlen(perfstr)-1); 371 if (is_numeric(show)) {
372 strncat(perfstr, show, sizeof(perfstr)-strlen(perfstr)-1); 372 strncat(perfstr, ptr2, copylen);
373 if (type) 373 strncat(perfstr, "=", sizeof(perfstr)-strlen(perfstr)-1);
374 strncat(perfstr, type, sizeof(perfstr)-strlen(perfstr)-1); 374 strncat(perfstr, show, sizeof(perfstr)-strlen(perfstr)-1);
375 strncat(perfstr, " ", sizeof(perfstr)-strlen(perfstr)-1); 375
376 if (type)
377 strncat(perfstr, type, sizeof(perfstr)-strlen(perfstr)-1);
378 strncat(perfstr, " ", sizeof(perfstr)-strlen(perfstr)-1);
379 }
376 380
377 } /* end while (ptr) */ 381 } /* end while (ptr) */
378 382