Commit e3f5dc1f authored by David Goulet's avatar David Goulet 🐼
Browse files

metrics: Need to surround label value with double quotes

parent 22861c2f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,6 +37,6 @@ const char *
metrics_format_label(const char *key, const char *value)
{
  static char buf[128];
  tor_snprintf(buf, sizeof(buf), "%s=%s", key, value);
  tor_snprintf(buf, sizeof(buf), "%s=\"%s\"", key, value);
  return buf;
}