This is an automated email from the git hooks/post-receive script.
itchyonion pushed a commit to branch main in repository pluggable-transports/snowflake.
The following commit(s) were added to refs/heads/main by this push: new 53e381e Fix server flag name 53e381e is described below
commit 53e381e45d63b0d0ccebbeece71b2471900c7b6a Author: itchyonion itchyonion@torproject.org AuthorDate: Tue Dec 13 09:23:34 2022 -0800
Fix server flag name --- server/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/server/server.go b/server/server.go index 484e37a..3d66d35 100644 --- a/server/server.go +++ b/server/server.go @@ -139,7 +139,7 @@ func main() { flag.BoolVar(&disableTLS, "disable-tls", false, "don't use HTTPS") flag.StringVar(&logFilename, "log", "", "log file to write to") flag.BoolVar(&unsafeLogging, "unsafe-logging", false, "prevent logs from being scrubbed") - flag.BoolVar(&versionFlag, "unsafe-logging", false, "display version info to stderr and quit") + flag.BoolVar(&versionFlag, "version", false, "display version info to stderr and quit") flag.Parse()
if versionFlag {
tor-commits@lists.torproject.org