diff options
author | brian <brian@FreeBSD.org> | 1997-05-24 17:32:42 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1997-05-24 17:32:42 +0000 |
commit | 81067cb46e8543e07d85f87008d4ccacf1eabee6 (patch) | |
tree | b216757aa8c78fa7bae8a9c15316cbeffdcce71f /usr.sbin/ppp/modem.c | |
parent | 16ff4223276d7d07622d8962c3924ef714ccff73 (diff) | |
download | FreeBSD-src-81067cb46e8543e07d85f87008d4ccacf1eabee6.zip FreeBSD-src-81067cb46e8543e07d85f87008d4ccacf1eabee6.tar.gz |
Fix the reconnect option, and add an explanation to vars.h
Diffstat (limited to 'usr.sbin/ppp/modem.c')
-rw-r--r-- | usr.sbin/ppp/modem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/modem.c b/usr.sbin/ppp/modem.c index f2c4dd0..faea048 100644 --- a/usr.sbin/ppp/modem.c +++ b/usr.sbin/ppp/modem.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: modem.c,v 1.37 1997/05/14 01:14:32 brian Exp $ + * $Id: modem.c,v 1.38 1997/05/19 02:00:08 brian Exp $ * * TODO: */ @@ -253,7 +253,7 @@ ModemTimeout() if (mode & MODE_DEDICATED) PacketMode(); } else { - reconnectRequired = 1; + reconnect(RECON_TRUE); DownConnection(); } } |