From 771311b501e115d48b66a102ccfe06b37a50474f Mon Sep 17 00:00:00 2001 From: Paul Mackerras Date: Thu, 1 Sep 1994 00:32:56 +0000 Subject: [PATCH] Use paths.h if it is available. --- pppd/pathnames.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pppd/pathnames.h b/pppd/pathnames.h index d8e91dc..7baf95a 100644 --- a/pppd/pathnames.h +++ b/pppd/pathnames.h @@ -1,13 +1,15 @@ /* * define path names * - * $Id: pathnames.h,v 1.4 1994/05/18 06:34:46 paulus Exp $ + * $Id: pathnames.h,v 1.5 1994/09/01 00:32:56 paulus Exp $ */ -#if defined(STREAMS) || defined(ultrix) -#define _PATH_PIDFILE "/etc/ppp" +#ifdef HAVE_PATHS_H +#include + #else -#define _PATH_PIDFILE "/var/run" +#define _PATH_VARRUN "/etc/ppp/" +#define _PATH_DEVNULL "/dev/null" #endif #define _PATH_UPAPFILE "/etc/ppp/pap-secrets" -- 2.39.2