From 7e3a512042279836a3c9d9b78f18e6ba595132ee Mon Sep 17 00:00:00 2001 From: Daniel Kucera Date: Thu, 25 Apr 2024 08:47:29 +0200 Subject: [PATCH] tinyproxy: fix upstream config generation Signed-off-by: Daniel Kucera --- net/tinyproxy/files/tinyproxy.init | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/tinyproxy/files/tinyproxy.init b/net/tinyproxy/files/tinyproxy.init index 4afdae6aa2..bf71dcbd9f 100644 --- a/net/tinyproxy/files/tinyproxy.init +++ b/net/tinyproxy/files/tinyproxy.init @@ -24,10 +24,10 @@ write_upstream() { [ -n "$target" ] && target=' "'"$target"'"' [ "$type" = "proxy" ] && [ -n "$via" ] && \ - echo "upstream $via$target" + echo "upstream http $via$target" [ "$type" = "reject" ] && [ -n "$target" ] && \ - echo "no upstream$target" + echo "upstream none$target" } proxy_atom() {