Index: Http.cc =================================================================== RCS file: /surf1/CVS/polygraph/src/Http.cc,v retrieving revision 1.4 diff -u -r1.4 Http.cc --- Http.cc 1999/04/26 00:55:59 1.4 +++ Http.cc 1999/04/28 07:06:04 @@ -152,12 +152,10 @@ else if (fieldEq("GET ", 4)) { if (const char *h = strchr(theSrchBuf, '_')) { - theSrchBuf = ++h; - theObjId = xatoi(theSrchBuf, -1); + theObjId = xatoi(h+1, -1); } if (const char *h = strchr(theSrchBuf, ' ')) { - theSrchBuf = h + 6; - isDbl(theSrchBuf, theHttpVer); + isDbl(h+6, theHttpVer); } } else if (fieldEq("X-ETag:", 7)) {