--- ray/src/common/header.c 1996/07/27 07:21:38 2.8 +++ ray/src/common/header.c 1997/10/31 11:40:52 2.9 @@ -57,7 +57,7 @@ register char *r, *s; while (*cp) if (*cp++ != *s++) return(0); if (r == NULL) return(1); - while (*s) *r++ = *s++; + while (*s && !isspace(*s)) *r++ = *s++; *r = '\0'; return(1); }