*** 1.2	1992/05/09 22:57:59
--- 1.3	1996/09/05 18:01:55
***************
*** 213,223 ****
  	char b[BUFSIZ];
  
  	if((f = fopen(name, "r")) == NULL) return errno;
! 	bzero(b, BUFSIZ);
  
  	while(fgets(b, BUFSIZ, f) != NULL) {
  		/* Very inefficient but works */
! 		bcopy(b, buf, BUFSIZ);
  	}
  
  	(void) fclose(f);
--- 213,223 ----
  	char b[BUFSIZ];
  
  	if((f = fopen(name, "r")) == NULL) return errno;
! 	memset(b, 0, BUFSIZ);
  
  	while(fgets(b, BUFSIZ, f) != NULL) {
  		/* Very inefficient but works */
! 		memcpy(buf, b, BUFSIZ);
  	}
  
  	(void) fclose(f);
