Remove spurious underscores from socket files

This commit is contained in:
Robbert van der Helm
2022-04-16 15:59:54 +02:00
parent 0ba0dab675
commit d79663bdc1
3 changed files with 6 additions and 4 deletions
+2 -2
View File
@@ -354,7 +354,7 @@ class Vst2Sockets final : public Sockets {
(base_dir_ / "host_vst_dispatch.sock").string(),
listen),
vst_host_callback_(io_context,
(base_dir_ / "vst_host_callback_.sock").string(),
(base_dir_ / "vst_host_callback.sock").string(),
listen),
host_vst_parameters_(
io_context,
@@ -365,7 +365,7 @@ class Vst2Sockets final : public Sockets {
(base_dir_ / "host_vst_process_replacing.sock").string(),
listen),
host_vst_control_(io_context,
(base_dir_ / "host_vst_control_.sock").string(),
(base_dir_ / "host_vst_control.sock").string(),
listen) {}
~Vst2Sockets() noexcept override { close(); }