Changeset 7662 for code/branches/masterserver/src/modules
- Timestamp:
- Nov 24, 2010, 3:29:56 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/masterserver/src/modules/masterserver/MasterServer.cc
r7658 r7662 35 35 { 36 36 /* singleton stuff */ 37 ManageScopedSingleton( MasterServer, ScopeID::Root, false );37 //ManageScopedSingleton( MasterServer, ScopeID::Root, false ); 38 38 39 39 /***** EVENTS *****/ … … 166 166 /* build reply string */ 167 167 char *tosend = (char *)calloc( (*i).getServerIP().length() + MSPROTO_SERVERLIST_ITEM_LEN + 2,1 ); 168 sprintf( "%s %s", MSPROTO_SERVERLIST_ITEM, (*i).getServerIP().c_str() );168 sprintf( tosend, "%s %s", MSPROTO_SERVERLIST_ITEM, (*i).getServerIP().c_str() ); 169 169 170 170 /* create packet from it */
Note: See TracChangeset
for help on using the changeset viewer.