summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibSQL/SQLClient.cpp
diff options
context:
space:
mode:
authorTim Schumacher <timschumi@gmx.de>2023-02-08 23:05:44 +0100
committerLinus Groh <mail@linusgroh.de>2023-02-13 00:50:07 +0000
commita96339b72b3b417ffaa4fbb4e7575149f749acaa (patch)
tree10cd665265e85a750d6a84713bedf73acf359069 /Userland/Libraries/LibSQL/SQLClient.cpp
parentd43a7eae545cd699f301471bd0f82399174339c1 (diff)
downloadserenity-a96339b72b3b417ffaa4fbb4e7575149f749acaa.zip
LibCore: Move Stream-based sockets into the `Core` namespace
Diffstat (limited to 'Userland/Libraries/LibSQL/SQLClient.cpp')
-rw-r--r--Userland/Libraries/LibSQL/SQLClient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibSQL/SQLClient.cpp b/Userland/Libraries/LibSQL/SQLClient.cpp
index 2cad3e8c8d..36236487ed 100644
--- a/Userland/Libraries/LibSQL/SQLClient.cpp
+++ b/Userland/Libraries/LibSQL/SQLClient.cpp
@@ -146,7 +146,7 @@ ErrorOr<NonnullRefPtr<SQLClient>> SQLClient::launch_server_and_create_client(Vec
if (TRY(should_launch_server(pid_path)))
TRY(launch_server(socket_path, pid_path, move(candidate_server_paths)));
- auto socket = TRY(Core::Stream::LocalSocket::connect(move(socket_path)));
+ auto socket = TRY(Core::LocalSocket::connect(move(socket_path)));
TRY(socket->set_blocking(true));
return adopt_nonnull_ref_or_enomem(new (nothrow) SQLClient(move(socket)));