HelperReply::parseResponseKeys()
{
// parse a "key=value" pair off the 'other()' buffer.
- while(other().hasContent()) {
+ while (other().hasContent()) {
char *p = modifiableOther().content();
- while(*p && *p != '=' && *p != ' ') ++p;
+ while (*p && *p != '=' && *p != ' ') ++p;
if (*p != '=')
return; // done. Not a key.
if (contentSize() > 0) {
const char *end = buf + contentSize();
const char *p = buf;
- for(; p<end && xisspace(*p); ++p);
+ for (; p<end && xisspace(*p); ++p);
if (p-buf > 0)
consume(p-buf);
}