From: Paul Mackerras Date: Thu, 18 Jan 1996 03:21:53 +0000 (+0000) Subject: look at args from .ppprc after options.tty X-Git-Tag: RELEASE_2_3_6~529 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=3f288145faa3fd5be9e49f940ac60fd8bf3869ec;ds=sidebyside look at args from .ppprc after options.tty --- diff --git a/pppd/main.c b/pppd/main.c index e28a3e0..55c26d5 100644 --- a/pppd/main.c +++ b/pppd/main.c @@ -18,7 +18,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: main.c,v 1.30 1996/01/01 22:59:26 paulus Exp $"; +static char rcsid[] = "$Id: main.c,v 1.31 1996/01/18 03:21:53 paulus Exp $"; #endif #include @@ -177,9 +177,9 @@ main(argc, argv) progname = *argv; if (!options_from_file(_PATH_SYSOPTIONS, REQ_SYSOPTIONS, 0) || + !options_for_tty() || !options_from_user() || - !parse_args(argc-1, argv+1) || - !options_for_tty()) + !parse_args(argc-1, argv+1)) exit(1); if (!ppp_available()) {