=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mail/lex.c,v retrieving revision 1.16 retrieving revision 1.17 diff -c -r1.16 -r1.17 *** src/usr.bin/mail/lex.c 1998/05/04 05:37:49 1.16 --- src/usr.bin/mail/lex.c 1998/06/12 18:07:57 1.17 *************** *** 1,4 **** ! /* $OpenBSD: lex.c,v 1.16 1998/05/04 05:37:49 millert Exp $ */ /* $NetBSD: lex.c,v 1.10 1997/05/17 19:55:13 pk Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: lex.c,v 1.17 1998/06/12 18:07:57 millert Exp $ */ /* $NetBSD: lex.c,v 1.10 1997/05/17 19:55:13 pk Exp $ */ /* *************** *** 38,44 **** #if 0 static char sccsid[] = "@(#)lex.c 8.2 (Berkeley) 4/20/95"; #else ! static char rcsid[] = "$OpenBSD: lex.c,v 1.16 1998/05/04 05:37:49 millert Exp $"; #endif #endif /* not lint */ --- 38,44 ---- #if 0 static char sccsid[] = "@(#)lex.c 8.2 (Berkeley) 4/20/95"; #else ! static char rcsid[] = "$OpenBSD: lex.c,v 1.17 1998/06/12 18:07:57 millert Exp $"; #endif #endif /* not lint */ *************** *** 549,558 **** intr(s) int s; { - sigset_t set, oset; - (void)sigfillset(&set); - (void)sigprocmask(SIG_BLOCK, &set, &oset); noreset = 0; if (!inithdr) sawcom++; --- 549,555 ---- *************** *** 568,574 **** } fputs("Interrupt\n", stderr); reset(0); - (void)sigprocmask(SIG_SETMASK, &oset, NULL); } /* --- 565,570 ----