SHA256
1
0
forked from pool/vhostmd
Files
vhostmd/value-newline.patch
2019-04-12 19:59:44 +00:00

18 lines
456 B
Diff

Index: vhostmd-1.1/vhostmd/metric.c
===================================================================
--- vhostmd-1.1.orig/vhostmd/metric.c
+++ vhostmd-1.1/vhostmd/metric.c
@@ -280,6 +280,12 @@ int metric_value_get(metric *m)
goto out;
fread(m->value, 1, len-1, fp);
+
+ if (m->type != M_XML) {
+ size_t end = strlen(m->value) - 1;
+ if (m->value[end] == '\n')
+ m->value[end] = '\0';
+ }
out:
ret = pclose(fp);