Fix typo in previous.
This commit is contained in:
parent
b1c02cd571
commit
6bfd77e432
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: error.c,v 1.12 1995/03/21 15:40:16 mycroft Exp $ */
|
||||
/* $NetBSD: error.c,v 1.13 1995/03/23 00:01:03 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1991, 1993
|
||||
@ -40,7 +40,7 @@
|
||||
#if 0
|
||||
char sccsid[] = "@(#)error.c 8.1 (Berkeley) 5/31/93";
|
||||
#else
|
||||
static char rcsid[] = "$NetBSD: error.c,v 1.12 1995/03/21 15:40:16 mycroft Exp $";
|
||||
static char rcsid[] = "$NetBSD: error.c,v 1.13 1995/03/23 00:01:03 mycroft Exp $";
|
||||
#endif
|
||||
#endif /* not lint */
|
||||
|
||||
@ -103,15 +103,15 @@ exraise(e)
|
||||
|
||||
void
|
||||
onint() {
|
||||
sigset_t set;
|
||||
sigset_t sigset;
|
||||
|
||||
if (suppressint) {
|
||||
intpending++;
|
||||
return;
|
||||
}
|
||||
intpending = 0;
|
||||
sigemptyset(&set);
|
||||
sigprocmask(SIG_SETMASK, &set);
|
||||
sigemptyset(&sigset);
|
||||
sigprocmask(SIG_SETMASK, &sigset, NULL);
|
||||
if (rootshell && iflag)
|
||||
exraise(EXINT);
|
||||
else
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: main.c,v 1.10 1995/03/21 18:48:54 mycroft Exp $ */
|
||||
/* $NetBSD: main.c,v 1.11 1995/03/23 00:02:49 mycroft Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1983, 1988, 1993
|
||||
@ -43,7 +43,7 @@ static char copyright[] =
|
||||
#if 0
|
||||
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/5/93";
|
||||
#else
|
||||
static char rcsid[] = "$NetBSD: main.c,v 1.10 1995/03/21 18:48:54 mycroft Exp $";
|
||||
static char rcsid[] = "$NetBSD: main.c,v 1.11 1995/03/23 00:02:49 mycroft Exp $";
|
||||
#endif
|
||||
#endif /* not lint */
|
||||
|
||||
@ -75,7 +75,7 @@ main(argc, argv)
|
||||
int argc;
|
||||
char *argv[];
|
||||
{
|
||||
int n, nfd, flags = 0;
|
||||
int n, nfd, tflags = 0;
|
||||
struct timeval *tvp, waittime;
|
||||
struct itimerval itval;
|
||||
register struct rip *query = msg;
|
||||
|
Loading…
Reference in New Issue
Block a user