|
|
| Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
| version 1.27, 1999/03/22 03:28:09 | version 1.28, 1999/03/23 02:58:50 | ||
|---|---|---|---|
|
|
||
| *dest++ = *source++; /* Do not check first field */ | *dest++ = *source++; /* Do not check first field */ | ||
| while (*source == ':') { | while (*source == ':') { | ||
| check=source+1; | check=source+1; | ||
| while (*check && isspace(*check) || | while (*check && (isspace(*check) || | ||
| (*check=='\\' && isspace(check[1]))) | (*check=='\\' && isspace(check[1]))) ) | ||
| ++check; | ++check; | ||
| if( *check == ':' ) | if( *check == ':' ) | ||
| source=check; | source=check; |