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

    r9138 r9598  
    120120  if (casostr != NULL) {
    121121    char *thepbase=pbase();
    122     for (int i=0;i<(pptr()-pbase());i++) (*casostr).put(thepbase[i]);
     122    for (int i=0;i<(pptr()-pbase());++i) (*casostr).put(thepbase[i]);
    123123  }
    124124 
     
    436436        }
    437437      }
    438       colhere ++;
     438      ++colhere;
    439439    }
    440440    gdbmhomes.insert ((*this_info).second.gsdl_gdbmhome);
    441441      }
    442       this_info ++;
     442      ++this_info;
    443443    }
    444444 
     
    456456    tmp.gsdl_gdbmhome = gsdl_gdbmhome;
    457457    translated_collectinfo[*colhere] = tmp;
    458     colhere ++;
     458    ++colhere;
    459459      }
    460460      gdbmhomes.insert (gsdl_gdbmhome);
     
    469469    // ignore the modelcol
    470470    if (*thiscol == "modelcol") {
    471       thiscol ++;
     471      ++thiscol;
    472472      continue;
    473473    }
     
    483483    cservers->add_collection (*thiscol, this_gsdlhome);
    484484
    485     thiscol ++;
     485    ++thiscol;
    486486  }
    487487
     
    616616    tmpconf.push_back ((*this_info).second.gsdl_gdbmhome);
    617617    recpt.configure ("collectinfo", tmpconf);
    618     this_info ++;
     618    ++this_info;
    619619  }
    620620
     
    632632      return 0;
    633633    }
    634     thome ++;
     634    ++thome;
    635635  }
    636636
     
    671671  while ((it = findchar(it, end, '.')) != end) {
    672672    lastdot = it;
    673     it++;
     673    ++it;
    674674  }
    675675  if (lastdot < end) ext = substr(lastdot+1, end);
     
    842842  cerr << flush;
    843843 
    844   libaccessnum++;
     844  ++libaccessnum;
    845845}
    846846
     
    925925    // POST data
    926926    URIStr.push_back('?');
    927     for (int i = 0; i < RequestFields->ContentLength; i++) {
     927    for (int i = 0; i < RequestFields->ContentLength; ++i) {
    928928      URIStr.push_back(RequestFields->Content[i]);
    929929    }
Note: See TracChangeset for help on using the changeset viewer.