*** Library/Implementation/HTParse.c	Sun Sep 25 14:53:34 1994
--- Library/Implementation/HTParse.c.patch	Wed Nov  9 10:42:15 1994
***************
*** 350,360 ****
  	path = filename;
      if (*path == '/' && *(path+1)=='/') {	  /* Some URLs start //<foo> */
  	path += 1;
!     } else if (!strncmp(path, "news:", 5)) {	    /* Make group lower case */
! 	char *group = path+5;
! 	while (*group && *group!='@' && *group!='/') {
! 	    *group = TOLOWER(*group);
! 	    group++;
  	}
  	if (URI_TRACE)
  	    fprintf(stderr, "into\n............ `%s'\n", filename);
--- 322,333 ----
  	path = filename;
      if (*path == '/' && *(path+1)=='/') {	  /* Some URLs start //<foo> */
  	path += 1;
!     } else if (!strncmp(path, "news:", 5)) {
! 	char *ptr = strchr(path+5, '@');
! 	if (!ptr) ptr = path+5;
! 	while (*ptr) {			    /* Make group or host lower case */
! 	    *ptr = TOLOWER(*ptr);
! 	    ptr++;
  	}
  	if (URI_TRACE)
  	    fprintf(stderr, "into\n............ `%s'\n", filename);
