From df49c60c9671e4a28e636964d744c1f59fb6cb68 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 12 Jun 2000 15:00:15 +0000 Subject: Merged from 4.5.0-beta3a --- cpukit/pppd/Makefile.am | 4 ++-- cpukit/pppd/options.c | 4 ++-- cpukit/pppd/pppd.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'cpukit/pppd') diff --git a/cpukit/pppd/Makefile.am b/cpukit/pppd/Makefile.am index 1c860d5a14..e6a27c80c8 100644 --- a/cpukit/pppd/Makefile.am +++ b/cpukit/pppd/Makefile.am @@ -1,6 +1,6 @@ -## +## ## $Id$ -## +## AUTOMAKE_OPTIONS = foreign 1.4 diff --git a/cpukit/pppd/options.c b/cpukit/pppd/options.c index 6eafb89eca..759ed988f8 100644 --- a/cpukit/pppd/options.c +++ b/cpukit/pppd/options.c @@ -93,8 +93,8 @@ char *connector[]={"TIMEOUT","3","ABORT","\nBUSY\r","ABORT","\nNO DIALTONE\r","A /*char *connector[]={"TIMEOUT","3","ABORT","\nBUSY\r","ABORT","\nNO DIALTONE\r","ABORT","\nNO CARRIER\r","ABORT","\nNO ANSWER\r","ABORT","\nRINGING\r\n\r\nRINGING\r", "","\rAT","OK-+++\\c-OK","ATH0","TIMEOUT","30","OK","ATDT0202122","CONNECT","","ppp","","Username:","ppp","Password:","ppp"}; */ -char *disconnector []; /* Script to disestablish physical link */ -char *welcomer []; /* Script to run after phys link estab. */ +char **disconnector; /* Script to disestablish physical link */ +char **welcomer; /* Script to run after phys link estab. */ int maxconnect = 0; /* Maximum connect time */ char user[MAXNAMELEN]="stb"; /* Username for PAP */ char passwd[MAXSECRETLEN]="stb"; /* Password for PAP */ diff --git a/cpukit/pppd/pppd.h b/cpukit/pppd/pppd.h index 7c12e38ae5..274eb07176 100644 --- a/cpukit/pppd/pppd.h +++ b/cpukit/pppd/pppd.h @@ -86,8 +86,8 @@ extern u_int32_t netmask; /* IP netmask to set on interface */ extern int lockflag; /* Create lock file to lock the serial dev */ extern int nodetach; /* Don't detach from controlling tty */ extern char *connector[]; /* Script to establish physical link */ -extern char *disconnector[]; /* Script to disestablish physical link */ -extern char *welcomer[]; /* Script to welcome client after connection */ +extern char **disconnector; /* Script to disestablish physical link */ +extern char **welcomer; /* Script to welcome client after connection */ extern int maxconnect; /* Maximum connect time (seconds) */ extern char user[]; /* Our name for authenticating ourselves */ extern char passwd[]; /* Password for PAP */ -- cgit v1.2.3