+2001-03-10 Ezra Peisach <epeisach@kangaroo.mit.edu>
+
+ * oid_ops.c: Avoid the use of a variable named index.
+
2000-10-03 Ezra Peisach <epeisach@mit.edu>
* gssapiP_generic.h (g_OID_equal): Instead of casting argument to
long numbuf;
long onumbuf;
OM_uint32 nbytes;
- int index;
+ int idx;
unsigned char *op;
brace = 0;
}
numbuf = onumbuf;
op += nbytes;
- index = -1;
+ idx = -1;
while (numbuf) {
- op[index] = (unsigned char) numbuf & 0x7f;
- if (index != -1)
- op[index] |= 0x80;
- index--;
+ op[idx] = (unsigned char) numbuf & 0x7f;
+ if (idx != -1)
+ op[idx] |= 0x80;
+ idx--;
numbuf >>= 7;
}
while (isdigit(*bp))