summaryrefslogtreecommitdiffstats
path: root/daemon/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/commands.c')
-rw-r--r--daemon/commands.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/daemon/commands.c b/daemon/commands.c
index d6364e89a8..eac392e33a 100644
--- a/daemon/commands.c
+++ b/daemon/commands.c
@@ -216,13 +216,13 @@ static cmd_status_t cmd_reload_labels_execute(char *args, char **message)
BUFFER *wb = buffer_create(10);
rrdhost_rdlock(localhost);
- netdata_rwlock_rdlock(&localhost->labels_rwlock);
- struct label *l=localhost->labels;
+ netdata_rwlock_rdlock(&localhost->labels.labels_rwlock);
+ struct label *l = localhost->labels.head;
while (l != NULL) {
buffer_sprintf(wb,"Label [source id=%s]: \"%s\" -> \"%s\"\n", translate_label_source(l->label_source), l->key, l->value);
l = l->next;
}
- netdata_rwlock_unlock(&localhost->labels_rwlock);
+ netdata_rwlock_unlock(&localhost->labels.labels_rwlock);
rrdhost_unlock(localhost);
(*message)=strdupz(buffer_tostring(wb));