From 19a5ab9af1cb52f4f44a9e92cb42d8d674f21434 Mon Sep 17 00:00:00 2001 From: Doridian Date: Sat, 18 Jun 2022 17:30:15 -0700 Subject: [PATCH] spelling --- client/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/main.go b/client/main.go index d7cb08c7..0ebc118b 100644 --- a/client/main.go +++ b/client/main.go @@ -85,14 +85,14 @@ func main() { if dest.User != nil { dest.User = nil - log.Printf("[C] WARNING: You have put the VPN password on the command line! This can cause security issues!") + log.Printf("[C] WARNING: You have put your password on the command line! This can cause security issues!") } header := http.Header{} if userInfo != nil { log.Printf("[C] Connecting to %s as user %s", dest.Redacted(), userInfo.Username()) if _, pws := userInfo.Password(); !pws { - log.Printf("[C] WARNING: You have specified to connect to the VPN with a username but without a password!") + log.Printf("[C] WARNING: You have specified to connect with a username but without a password!") } header.Add("Authorization", "Basic "+base64.StdEncoding.EncodeToString([]byte(userInfo.String()))) } else {