summaryrefslogtreecommitdiffstats
path: root/plugins/check_snmp.c
diff options
context:
space:
mode:
authorSven Nierlein <sven@nierlein.de>2012-06-26 22:02:09 (GMT)
committerSven Nierlein <sven@nierlein.de>2012-06-26 22:02:09 (GMT)
commit843f9540562930391b7db224664adbf951f11275 (patch)
treea716cf76399c9c271699a45d79fde1387e4837b3 /plugins/check_snmp.c
parent9c886d049d1dec9be0ac147c57d2094d2d4773da (diff)
downloadmonitoring-plugins-843f9540562930391b7db224664adbf951f11275.tar.gz
check_snmp: use single quotes for perf data labels
Diffstat (limited to 'plugins/check_snmp.c')
-rw-r--r--plugins/check_snmp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index 51ad6f4..a5a88d2 100644
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
@@ -494,10 +494,10 @@ main (int argc, char **argv)
494 if (strpbrk (temp_string, " ='\"") == NULL) { 494 if (strpbrk (temp_string, " ='\"") == NULL) {
495 strncat(perfstr, temp_string, sizeof(perfstr)-strlen(perfstr)-1); 495 strncat(perfstr, temp_string, sizeof(perfstr)-strlen(perfstr)-1);
496 } else { 496 } else {
497 if (strpbrk (temp_string, "\"") == NULL) { 497 if (strpbrk (temp_string, "'") == NULL) {
498 quote_string="\"";
499 } else {
500 quote_string="'"; 498 quote_string="'";
499 } else {
500 quote_string="\"";
501 } 501 }
502 strncat(perfstr, quote_string, sizeof(perfstr)-strlen(perfstr)-1); 502 strncat(perfstr, quote_string, sizeof(perfstr)-strlen(perfstr)-1);
503 strncat(perfstr, temp_string, sizeof(perfstr)-strlen(perfstr)-1); 503 strncat(perfstr, temp_string, sizeof(perfstr)-strlen(perfstr)-1);