*** util.c.orig	Thu Sep 19 08:08:17 1996
--- util.c	Sun Sep 22 03:26:17 1996
***************
*** 418,424 ****
  	{
  		if (*p == '&')
  		{
! 			snprintf(bp, SPACELEFT(buf, bp), "%s", login);
  			*bp = toupper(*bp);
  			bp += strlen(bp);
  		}
--- 418,424 ----
  	{
  		if (*p == '&')
  		{
! 			snprintf(bp, buflen - (bp - buf), "%s", login);
  			*bp = toupper(*bp);
  			bp += strlen(bp);
  		}

*** util.c.orig	Sat Sep 21 18:49:45 1996
--- util.c	Sat Sep 21 18:49:59 1996
***************
*** 1865,1871 ****
  	char *p;
  	char *begin, *end;
  	int i;
! 	char delimbuf[3];
  	
  	if (delim == '\0')
  		strcpy(delimbuf, "\n\t ");
--- 1865,1871 ----
  	char *p;
  	char *begin, *end;
  	int i;
! 	char delimbuf[4];
  	
  	if (delim == '\0')
  		strcpy(delimbuf, "\n\t ");

