From: Paul Mackerras Date: Thu, 12 Aug 1999 04:25:10 +0000 (+0000) Subject: make default maxfail 10 X-Git-Tag: ppp-2.4.7~666 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=43980349e8e0c4119d58aa4d53c414864991b276;hp=9678d851692fcd46e92f472d7486bbd3c8be24c1 make default maxfail 10 --- diff --git a/pppd/options.c b/pppd/options.c index 59c7b5b..2571774 100644 --- a/pppd/options.c +++ b/pppd/options.c @@ -18,7 +18,7 @@ */ #ifndef lint -static const char rcsid[] = "$Id: options.c,v 1.61 1999/08/12 04:17:07 paulus Exp $"; +static const char rcsid[] = "$Id: options.c,v 1.62 1999/08/12 04:25:10 paulus Exp $"; #endif #include @@ -93,7 +93,7 @@ char *record_file = NULL; /* File to record chars sent/received */ int using_pty = 0; bool sync_serial = 0; /* Device is synchronous serial device */ int log_to_fd = 1; /* send log messages to this fd too */ -int maxfail; /* max # of unsuccessful connection attempts */ +int maxfail = 10; /* max # of unsuccessful connection attempts */ extern option_t auth_options[]; extern struct stat devstat;