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
View File
@@ -33,6 +33,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
- Fixed an obscure issue with VST3 plugins crashing in **Ardour** on
Arch/Manjaro because of misreported parameter queue lengths.
- Some of yabridge's socket file names contained extremely aesthetically
unpleasing trailing underscores. Begone pesky underscores!
### Packaging notes
+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(); }
+2 -2
View File
@@ -315,10 +315,10 @@ class Vst3Sockets final : public Sockets {
bool listen)
: Sockets(endpoint_base_dir),
host_vst_control_(io_context,
(base_dir_ / "host_vst_control_.sock").string(),
(base_dir_ / "host_vst_control.sock").string(),
listen),
vst_host_callback_(io_context,
(base_dir_ / "vst_host_callback_.sock").string(),
(base_dir_ / "vst_host_callback.sock").string(),
listen),
io_context_(io_context) {}