diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-07-24 12:06:51 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-08-14 21:52:35 +0100 |
commit | 07e89ad5382d4c8881ac6e5d998659f57da34439 (patch) | |
tree | 39dfe7b18444eacd3504d37ceb6824e510cf1478 /Userland/Libraries | |
parent | bee5bcda7324279f17409d49aca715c518ac763e (diff) | |
download | serenity-07e89ad5382d4c8881ac6e5d998659f57da34439.zip |
Base: Launch ConfigServer at session start-up
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibConfig/Client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibConfig/Client.h b/Userland/Libraries/LibConfig/Client.h index 48a93e3491..406dd3a93b 100644 --- a/Userland/Libraries/LibConfig/Client.h +++ b/Userland/Libraries/LibConfig/Client.h @@ -18,7 +18,7 @@ namespace Config { class Client final : public IPC::ConnectionToServer<ConfigClientEndpoint, ConfigServerEndpoint> , public ConfigClientEndpoint { - IPC_CLIENT_CONNECTION(Client, "/tmp/portal/config"sv) + IPC_CLIENT_CONNECTION(Client, "/tmp/user/%uid/portal/config"sv) public: void pledge_domains(Vector<String> const&); |