From 44e66bf4590cbfbc89822f6b7d1c3d488b28750d Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Sun, 13 Sep 2020 08:44:38 -0400 Subject: [PATCH] Change all prints with master server to server browser --- src/http-mserv.c | 6 +++--- src/mserv.c | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/http-mserv.c b/src/http-mserv.c index c149eb9b..0998624e 100644 --- a/src/http-mserv.c +++ b/src/http-mserv.c @@ -74,7 +74,7 @@ static void Contact_error (void) { CONS_Alert(CONS_ERROR, - "There was a problem contacting the master server...\n" + "There was a problem contacting the server browser...\n" ); } @@ -243,7 +243,7 @@ HMS_do (struct HMS_buffer *buffer) Contact_error(); Blame( - "Master server error %ld: %s%s\n", + "Server browser error %ld: %s%s\n", status, buffer->buffer, ( (p) ? "" : " (malformed)" ) @@ -535,6 +535,6 @@ MasterServer_Debug_OnChange (void) #ifdef MASTERSERVER /* TODO: change to 'latest-log.txt' for log files revision. */ if (cv_masterserver_debug.value) - CONS_Printf("Master server debug messages will appear in log.txt\n"); + CONS_Printf("Server browser debug messages will appear in log.txt\n"); #endif } diff --git a/src/mserv.c b/src/mserv.c index 7adec7ff..f422a02f 100644 --- a/src/mserv.c +++ b/src/mserv.c @@ -114,7 +114,7 @@ static void WarnGUI (void) #ifdef HAVE_THREADS I_lock_mutex(&m_menu_mutex); #endif - M_StartMessage(M_GetText("There was a problem connecting to\nthe Master Server\n\nCheck the console for details.\n"), NULL, MM_NOTHING); + M_StartMessage(M_GetText("There was a problem connecting to\nthe server browser\n\nCheck the console for details.\n"), NULL, MM_NOTHING); #ifdef HAVE_THREADS I_unlock_mutex(m_menu_mutex); #endif @@ -191,7 +191,7 @@ Finish_registration (void) { int registered; - CONS_Printf("Registering this server on the master server...\n"); + CONS_Printf("Registering this server on the server browser...\n"); registered = HMS_register(); @@ -205,7 +205,7 @@ Finish_registration (void) Unlock_state(); if (registered) - CONS_Printf("Master server registration successful.\n"); + CONS_Printf("Server browser registration successful.\n"); } static void @@ -232,7 +232,7 @@ Finish_update (void) } Unlock_state(); - CONS_Printf("Updated master server listing.\n"); + CONS_Printf("Updated server browser listing.\n"); } else Finish_registration(); @@ -273,7 +273,7 @@ Finish_unlist (void) if (registered) { - CONS_Printf("Removing this server from the master server...\n"); + CONS_Printf("Removing this server from the server browser...\n"); if (HMS_unlist()) CONS_Printf("Server deregistration request successfully sent.\n");