Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7667


Ignore:
Timestamp:
Nov 24, 2010, 5:12:36 PM (13 years ago)
Author:
dafrick
Message:

fix this…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/masterserver/src/libraries/network/WANDiscovery.cc

    r7665 r7667  
    4949    /* initialize it and see if it worked */
    5050    if( msc.initialize() )
    51       COUT(1) << "Error: could not initialize master server communications!\n";
     51      COUT(0) << "Error: could not initialize master server communications!\n";
    5252
    5353    /* connect and see if it worked */
    5454    if( msc.connect( MS_ADDRESS, 1234 ) )
    55       COUT(1) << "Error: could not connect to master server!\n";
     55      COUT(0) << "Error: could not connect to master server!\n";
     56
     57    COUT(0) << "Initialization of WANDiscovery complete.\n";
    5658  }
    5759
     
    105107
    106108    /* deal with replies */
    107     while( !(this->msc).pollForReply( rhandler ) )
     109    while( !((this->msc).pollForReply( rhandler )) )
    108110      /* nothing */;
    109111
Note: See TracChangeset for help on using the changeset viewer.