Better patch for the previous.
This commit is contained in:
parent
0e4ea99974
commit
b524577c42
|
@ -42,7 +42,7 @@ static char copyright[] =
|
||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
/*static char sccsid[] = "from: @(#)nfsd.c 8.7 (Berkeley) 2/22/94";*/
|
/*static char sccsid[] = "from: @(#)nfsd.c 8.7 (Berkeley) 2/22/94";*/
|
||||||
static char *rcsid = "$Id: nfsd.c,v 1.14 1994/10/18 16:00:17 mycroft Exp $";
|
static char *rcsid = "$Id: nfsd.c,v 1.15 1994/10/18 16:38:12 mycroft Exp $";
|
||||||
#endif not lint
|
#endif not lint
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
|
@ -544,7 +544,8 @@ main(argc, argv, envp)
|
||||||
void
|
void
|
||||||
usage()
|
usage()
|
||||||
{
|
{
|
||||||
(void)fprintf(stderr, "nfsd %s\n", USAGE);
|
|
||||||
|
(void)fprintf(stderr, "usage: nfsd %s\n", USAGE);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -552,6 +553,7 @@ void
|
||||||
nonfs(signo)
|
nonfs(signo)
|
||||||
int signo;
|
int signo;
|
||||||
{
|
{
|
||||||
|
|
||||||
syslog(LOG_ERR, "missing system call: NFS not available.");
|
syslog(LOG_ERR, "missing system call: NFS not available.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -560,8 +562,5 @@ reapchild(signo)
|
||||||
int signo;
|
int signo;
|
||||||
{
|
{
|
||||||
|
|
||||||
for (;;) {
|
while (wait3((int *)0, WNOHANG, (struct rusage *)0) > 0);
|
||||||
if (wait3(NULL, WNOHANG, NULL) < 0 && errno != EINTR)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,7 @@ static char copyright[] =
|
||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
/*static char sccsid[] = "from: @(#)nfsd.c 8.7 (Berkeley) 2/22/94";*/
|
/*static char sccsid[] = "from: @(#)nfsd.c 8.7 (Berkeley) 2/22/94";*/
|
||||||
static char *rcsid = "$Id: nfsd.c,v 1.14 1994/10/18 16:00:17 mycroft Exp $";
|
static char *rcsid = "$Id: nfsd.c,v 1.15 1994/10/18 16:38:12 mycroft Exp $";
|
||||||
#endif not lint
|
#endif not lint
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
|
@ -544,7 +544,8 @@ main(argc, argv, envp)
|
||||||
void
|
void
|
||||||
usage()
|
usage()
|
||||||
{
|
{
|
||||||
(void)fprintf(stderr, "nfsd %s\n", USAGE);
|
|
||||||
|
(void)fprintf(stderr, "usage: nfsd %s\n", USAGE);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -552,6 +553,7 @@ void
|
||||||
nonfs(signo)
|
nonfs(signo)
|
||||||
int signo;
|
int signo;
|
||||||
{
|
{
|
||||||
|
|
||||||
syslog(LOG_ERR, "missing system call: NFS not available.");
|
syslog(LOG_ERR, "missing system call: NFS not available.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -560,8 +562,5 @@ reapchild(signo)
|
||||||
int signo;
|
int signo;
|
||||||
{
|
{
|
||||||
|
|
||||||
for (;;) {
|
while (wait3((int *)0, WNOHANG, (struct rusage *)0) > 0);
|
||||||
if (wait3(NULL, WNOHANG, NULL) < 0 && errno != EINTR)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue