From 39954f9e7fc24126caafbf981ea43a83f01029dd Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Sun, 13 Nov 2022 19:10:56 -0500 Subject: [PATCH] Ladybird: Give the WebContent socket a descriptive name WebContent's main() will soon take over multiple sockets. Give the existing WebContent socket a descriptive name to avoid confusion. --- Ladybird/WebContentView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ladybird/WebContentView.cpp b/Ladybird/WebContentView.cpp index 60f6173150..9902037787 100644 --- a/Ladybird/WebContentView.cpp +++ b/Ladybird/WebContentView.cpp @@ -586,7 +586,7 @@ void WebContentView::create_client() MUST(Core::System::close(ui_fd_passing_fd)); MUST(Core::System::close(ui_fd)); - auto takeover_string = String::formatted("x:{}", wc_fd); + auto takeover_string = String::formatted("WebContent:{}", wc_fd); MUST(Core::System::setenv("SOCKET_TAKEOVER"sv, takeover_string, true)); auto fd_passing_socket_string = String::formatted("{}", wc_fd_passing_fd);