From bd070810c9abc2a45c9d32e16e0fa5701724c26b Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Sun, 2 Apr 1989 21:14:33 -0800 Subject: [PATCH] add pathnames.h SCCS-vsn: usr.sbin/inetd/inetd.c 5.15 --- usr/src/usr.sbin/inetd/inetd.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/usr/src/usr.sbin/inetd/inetd.c b/usr/src/usr.sbin/inetd/inetd.c index 0a5a52d95c..6c31544c67 100644 --- a/usr/src/usr.sbin/inetd/inetd.c +++ b/usr/src/usr.sbin/inetd/inetd.c @@ -22,7 +22,7 @@ char copyright[] = #endif /* not lint */ #ifndef lint -static char sccsid[] = "@(#)inetd.c 5.14 (Berkeley) %G%"; +static char sccsid[] = "@(#)inetd.c 5.15 (Berkeley) %G%"; #endif /* not lint */ /* @@ -79,6 +79,7 @@ static char sccsid[] = "@(#)inetd.c 5.14 (Berkeley) %G%"; #include #include #include +#include "pathnames.h" #define TOOMANY 40 /* don't start more than TOOMANY */ #define CNT_INTVL 60 /* servers in CNT_INTVL sec. */ @@ -151,7 +152,7 @@ struct biltin { }; #define NUMINT (sizeof(intab) / sizeof(struct inent)) -char *CONFIG = "/etc/inetd.conf"; +char *CONFIG = _PATH_INETDCONF; char **Argv; char *LastArg; -- 2.20.1