summaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorIngo Feinerer <feinerer@logic.at>2021-02-15 12:56:42 +0100
committerdrkhsh <me@drkhsh.at>2022-10-26 21:24:16 +0200
commit3b699c127db745b32002c14d59a6de4ebcc0b7db (patch)
tree834e56db8ebf6f5924f2e0882b4fb72ac96a9628 /components
parent798809ce02528d5954e0b1d524f44c29503a7407 (diff)
downloadslstatus-3b699c127db745b32002c14d59a6de4ebcc0b7db.tar.gz
Reset sndiod initialization flag on disconnects
If the connection is lost to the sndiod(8) daemon reset the initialization to allow for a graceful restart.
Diffstat (limited to 'components')
-rw-r--r--components/volume.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/volume.c b/components/volume.c
index 32f7817..c94f872 100644
--- a/components/volume.c
+++ b/components/volume.c
@@ -161,6 +161,7 @@
if (sioctl_revents(hdl, pfds) & POLLHUP) {
warn("sndio: disconnected");
cleanup();
+ initialized = 0;
return NULL;
}
}