summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1999-01-04 12:03:09 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1999-01-04 12:03:09 +0000
commit23d42ff5b42c5e806ee16d84a64127bbec4d8bfc (patch)
treeb81591ef4c13af17bb999993859a49d738670695 /usr.sbin
parentdd6065b036b6de46156a3a024c27d2f9b4a04572 (diff)
PIDs does not always fit in short
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/inetd/inetd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c
index 58852498d83..1b90a4dcbcb 100644
--- a/usr.sbin/inetd/inetd.c
+++ b/usr.sbin/inetd/inetd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: inetd.c,v 1.54 1998/12/04 07:52:02 deraadt Exp $ */
+/* $OpenBSD: inetd.c,v 1.55 1999/01/04 12:03:08 niklas Exp $ */
/* $NetBSD: inetd.c,v 1.11 1996/02/22 11:14:41 mycroft Exp $ */
/*
* Copyright (c) 1983,1991 The Regents of the University of California.
@@ -41,7 +41,7 @@ char copyright[] =
#ifndef lint
/*static char sccsid[] = "from: @(#)inetd.c 5.30 (Berkeley) 6/3/91";*/
-static char rcsid[] = "$OpenBSD: inetd.c,v 1.54 1998/12/04 07:52:02 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: inetd.c,v 1.55 1999/01/04 12:03:08 niklas Exp $";
#endif /* not lint */
/*
@@ -212,7 +212,7 @@ struct servtab {
int se_rpcversl; /* rpc program lowest version */
int se_rpcversh; /* rpc program highest version */
#define isrpcservice(sep) ((sep)->se_rpcversl != 0)
- short se_wait; /* single threaded server */
+ pid_t se_wait; /* single threaded server */
short se_checked; /* looked at during merge */
char *se_user; /* user name to run as */
char *se_group; /* group name to run as */