Subversion Repositories oidconverter

Compare Revisions

Regard whitespace Rev 9 → Rev 10

/trunk/c/oid
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/trunk/c/oid.c
305,7 → 305,7
int fSub = 0; // Subtract value from next number output. Used when encoding {2 48} and up
 
while (*p) {
if (*p != '.' && *p != '\r' && *p != '\n' && *p != '\x20' && *p != '\t') {
if (*p != '.' && *p != ':' && *p != '\r' && *p != '\n' && *p != '\x20' && *p != '\t') {
*q++ = *p;
}
p++;