Ignore:
Timestamp:
2005-04-07T17:18:18+12:00 (19 years ago)
Author:
kjdon
Message:

added some x++ -> ++x changes submitted by Emanuel Dejanu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/w32server/netio.cpp

    r3810 r9598  
    212212 
    213213  bind_port = PortNum;
    214   for (bind_count=0; bind_count < MAXBINDCOUNT; bind_count++) {
     214  for (bind_count=0; bind_count < MAXBINDCOUNT; ++bind_count) {
    215215    // Set up the Server Socket Address
    216216    memset(&ServerSockAddr, 0, sizeof(ServerSockAddr)); //Needed?
     
    234234    if (bind_port == 80) bind_port = IPPORT_RESERVED+1;
    235235    else if (bind_count == 0) bind_port = 80;
    236     else bind_port++;
     236    else ++bind_port;
    237237  }
    238238 
     
    349349    }
    350350    CurChar = IOBuffer[BufferIndex];
    351     BufferIndex++;
     351    ++BufferIndex;
    352352    if ((CurChar != 10) && (CurChar != 13))  {
    353353      OutStr.push_back(CurChar);
Note: See TracChangeset for help on using the changeset viewer.