diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-30 22:35:29 +0200 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-30 22:35:29 +0200 |
commit | 1921cfccd6d83edb15a04fdb143a3176fb96dd22 (patch) | |
tree | 73249397eb0f9ff4f00829f7a5a8efc1e488ad88 /lib | |
parent | f413ac38e30e606beda4ef7f6bf1db40b49682d3 (diff) | |
download | monitoring-plugins-1921cfccd6d83edb15a04fdb143a3176fb96dd22.tar.gz |
Always quote perfdata labels
Diffstat (limited to 'lib')
-rw-r--r-- | lib/perfdata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/perfdata.c b/lib/perfdata.c index 661756c5..4f9c9558 100644 --- a/lib/perfdata.c +++ b/lib/perfdata.c | |||
@@ -33,7 +33,7 @@ char *pd_value_to_string(const mp_perfdata_value pd) { | |||
33 | char *pd_to_string(mp_perfdata pd) { | 33 | char *pd_to_string(mp_perfdata pd) { |
34 | assert(pd.label != NULL); | 34 | assert(pd.label != NULL); |
35 | char *result = NULL; | 35 | char *result = NULL; |
36 | asprintf(&result, "%s=", pd.label); | 36 | asprintf(&result, "'%s'=", pd.label); |
37 | 37 | ||
38 | asprintf(&result, "%s%s", result, pd_value_to_string(pd.value)); | 38 | asprintf(&result, "%s%s", result, pd_value_to_string(pd.value)); |
39 | 39 | ||