Subject: Re: fix to sup kernel link problem
To: None <davem@nadzieja.rutgers.edu>
From: Charles M. Hannum <mycroft@gnu.ai.mit.edu>
List: port-sparc
Date: 12/17/1994 14:26:00
   The line in sunos_misc.c in settimeofday() saying:

	   timevaladd(&atv, (struct timeval *)&time);  

   should be changed to

	   __timeradd(&atv, (struct timeval *)&time);  

Actually, it should be just:

	__timeradd(&atv, &time);

and I already did it once, but someone seems to have undone it in one
of their recent commits.

Anyway, I fixed it.