[Client] Small fixes

[Client] Small fixes

diff --git a/src/docs/Changelog b/src/docs/Changelog
index 57ff524..fd6ca0d 100644
--- a/src/docs/Changelog
+++ b/src/docs/Changelog
@@ -5,6 +5,8 @@
 	* [SoundSystem] Don't play any sound if while application is minimized
 	* [SoundSystem] Don't play any sound if while application is unfocused
 	* [Engine] Allow sending "userinfo" while the menu is open
+	* [Filesystem] Changed fs_debug logging option
+	* [Client] Small fixes
 	
 2021-04-03 Dusan Jocic <dusanjocic@msn>
 	* [RenderSystem} Addressed the problem with DPI inside the engine
diff --git a/src/engine/client/clientBrowser.cpp b/src/engine/client/clientBrowser.cpp
index 953d624..951cb2f 100644
--- a/src/engine/client/clientBrowser.cpp
+++ b/src/engine/client/clientBrowser.cpp
@@ -421,7 +421,7 @@ void idClientBrowserSystemLocal::ServerInfoPacket( netadr_t from, msg_t* msg )
     {
         if( info[::strlen( info ) - 1] != '\n' )
         {
-            ::strncat( info, "\n", sizeof( info ) );
+            Q_strcat( info, sizeof( info ), "\n" );
         }
         
         Com_Printf( "%s: %s", networkSystem->AdrToStringwPort( from ), info );
@@ -789,7 +789,7 @@ void idClientBrowserSystemLocal::GlobalServers( void )
     
     if( !*masteraddress )
     {
-        Com_Printf( "idClientBrowserSystemLocal::GlobalServers: Error: No master server address given.\n" );
+        Com_Printf( "idClientBrowserSystemLocal::GlobalServers: Error: No master server address given for %s.\n", command );
         return;
     }
     

GitHub
sha: 0f6466d8