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/wincgiutils.cpp

    r2338 r9598  
    5454  while (it < end) {
    5555    if (*it == ':') {
    56       it++;
     56      ++it;
    5757      text_t portstr;
    5858      while (it != end && (*it >= '0' && *it <= '9')) {
    5959    portstr.push_back(*it);
    60     it++;
     60    ++it;
    6161      }
    6262      *port = portstr.getint();
     
    6767      while (it != end) {
    6868    name.push_back(*it);
    69     it++;
     69    ++it;
    7070      }
    7171      break;
     
    7373
    7474    machine.push_back(*it);
    75     it ++;
     75    ++it;
    7676  }
    7777  return http_ok;
Note: See TracChangeset for help on using the changeset viewer.