[comp.mail.elm] Minor problem with Patch #2

root@cheviot.newcastle.ac.uk (Andy Linton) (05/02/89)

I've just been looking through Patch #2 and I realise that what I sent to Syd
has a minor flaw.  It's just nit picking really but I'd rather it was right. 

andy
--
*** init.c.orig	Tue May  2 10:46:21 1989
--- init.c	Tue May  2 10:44:41 1989
***************
*** 207,213 ****
  #ifdef SV_INTERRUPT
  	alarm_vec.sv_handler = alarm_signal;
  	alarm_vec.sv_flags = SV_INTERRUPT;
! 	sigvec (SIGALRM, &alarm_vec, 0);	/* Process Timer Alarm	    */
  #else
  	signal(SIGALRM, alarm_signal);		/* Process Timer Alarm      */
  #endif
--- 207,213 ----
  #ifdef SV_INTERRUPT
  	alarm_vec.sv_handler = alarm_signal;
  	alarm_vec.sv_flags = SV_INTERRUPT;
! 	sigvec (SIGALRM, &alarm_vec, (struct sigvec *)0);	/* Process Timer Alarm	    */
  #else
  	signal(SIGALRM, alarm_signal);		/* Process Timer Alarm      */
  #endif