Removed rogue space on QUIC output

Before:

```
 TLS 1.2    offered (OK)
 TLS 1.3    offered (OK): final
 QUIC        not offered or timed out
 NPN/SPDY   not offered                                                                                      
 ALPN/HTTP2 h2, http/1.1 (offered)                                                                           
```

After:

```
 TLS 1.2    offered (OK)
 TLS 1.3    offered (OK): final
 QUIC       not offered or timed out
 NPN/SPDY   not offered
 ALPN/HTTP2 h2, http/1.1 (offered)
```
This commit is contained in:
Robin Wood
2025-07-08 08:32:47 +01:00
committed by GitHub
parent cc5ab00548
commit ec5443438f

View File

@ -6169,7 +6169,7 @@ sub_quic() {
if [[ -n "$PROXY" ]]; then if [[ -n "$PROXY" ]]; then
proxy_hint_str="(tried directly, is not proxyable):" proxy_hint_str="(tried directly, is not proxyable):"
fi fi
outln "$proxy_hint_str not offered or timed out" outln "${proxy_hint_str}not offered or timed out"
fileout "$jsonID" "INFO" "$proxy_hint_str not offered" fileout "$jsonID" "INFO" "$proxy_hint_str not offered"
else else
pr_svrty_best "offered (OK)" pr_svrty_best "offered (OK)"