From a60b5b8e40397a3cb8f84fe76018c7723dbd1c48 Mon Sep 17 00:00:00 2001 From: Hurrison Date: Sun, 28 Apr 2024 14:29:18 +0800 Subject: [PATCH] fix: Incorrect error message function argument. Should be "list" to match the function's purpose. Incorrect error message function argument. Should be "list" to match the function's purpose. --- macos/stubby-ui-helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macos/stubby-ui-helper.c b/macos/stubby-ui-helper.c index 9871a46..7bf9dca 100644 --- a/macos/stubby-ui-helper.c +++ b/macos/stubby-ui-helper.c @@ -135,7 +135,7 @@ void list() #endif int err = execl(LAUNCHCTL, LAUNCHCTL, "list", "org.getdns.stubby", NULL); if (err == -1) - fail_with_errno("stop"); + fail_with_errno("list"); } void dns_stubby()