From 8a687941fba310d4548671f23a8f661c2b3c452c Mon Sep 17 00:00:00 2001 From: James R Date: Sat, 12 Sep 2020 10:32:14 -0700 Subject: [PATCH] Fix master server token --- src/http-mserv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http-mserv.c b/src/http-mserv.c index 34fc2c7f..c149eb9b 100644 --- a/src/http-mserv.c +++ b/src/http-mserv.c @@ -175,7 +175,7 @@ HMS_connect (const char *format, ...) seek += sizeof "?v=2" - 1; if (quack_token) - sprintf(&url[seek], "?token=%s", quack_token); + sprintf(&url[seek], "&token=%s", quack_token); CONS_Printf("HMS: connecting '%s'...\n", url);