diff options
| author | Sven Nierlein <sven@nierlein.de> | 2012-06-27 00:02:09 +0200 |
|---|---|---|
| committer | Sven Nierlein <sven@nierlein.de> | 2012-06-27 00:02:09 +0200 |
| commit | 843f9540562930391b7db224664adbf951f11275 (patch) | |
| tree | a716cf76399c9c271699a45d79fde1387e4837b3 /plugins/check_snmp.c | |
| parent | 9c886d049d1dec9be0ac147c57d2094d2d4773da (diff) | |
| download | monitoring-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index 51ad6f4e..a5a88d25 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); |
