This commit is contained in:
Daniel Kucera 2024-05-01 07:11:51 +03:00 committed by GitHub
commit efd7a988ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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() {