summaryrefslogtreecommitdiff
path: root/src/daemon
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon')
-rw-r--r--src/daemon/main.c2
-rw-r--r--src/daemon/slave.c6
2 files changed, 7 insertions, 1 deletions
diff --git a/src/daemon/main.c b/src/daemon/main.c
index 34cbaf50..88e19a09 100644
--- a/src/daemon/main.c
+++ b/src/daemon/main.c
@@ -98,7 +98,7 @@ handle_parent_connection (int s)
do_output (s, resp, _offset_data (cpu), 0, NULL);
break;
case GLIBTOP_CMND_DISK:
- glibtop_get_disk_l (server, &resp->u.disk.cpu);
+ glibtop_get_disk_l (server, &resp->u.data.disk);
do_output (s, resp, _offset_data (disk), 0, NULL);
break;
case GLIBTOP_CMND_MEM:
diff --git a/src/daemon/slave.c b/src/daemon/slave.c
index e15f1efc..6e80b2b8 100644
--- a/src/daemon/slave.c
+++ b/src/daemon/slave.c
@@ -135,6 +135,12 @@ handle_slave_command (glibtop_command *cmnd, glibtop_response *resp,
resp->offset = _offset_data (cpu);
break;
#endif
+#if GLIBTOP_SUID_DISK
+ case GLIBTOP_CMND_DISK:
+ glibtop_get_disk_p (server, &resp->u.data.disk);
+ resp->offset = _offset_data (disk);
+ break;
+#endif
#if GLIBTOP_SUID_MEM
case GLIBTOP_CMND_MEM:
glibtop_get_mem_p (server, &resp->u.data.mem);