aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ppp/link.c
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1998-06-27 23:48:54 +0000
committerBrian Somers <brian@FreeBSD.org>1998-06-27 23:48:54 +0000
commit3a2e4f621c7f05e1f6148507e3e5ca55ff3a01f0 (patch)
treeb1bbcd05e5a634e687dd81405ba92565b54b59e9 /usr.sbin/ppp/link.c
parent25d0f8a50ce1e1ebceaa3cff358a35287c4853ae (diff)
downloadsrc-3a2e4f621c7f05e1f6148507e3e5ca55ff3a01f0.tar.gz
src-3a2e4f621c7f05e1f6148507e3e5ca55ff3a01f0.zip
o Fix remaining sizeof problems for 64 bit machines.
o Allow ``set ....'' when we have multiple links but aren't in multilink mode. o Do a TLS when we receive a ``Open'' event in ``Closed'' state, despite the rfc state transition table. This is clearly an error in the RFC as TLS cannot have yet been called (without TLF) in the ``Closed'' state. I've posted a message to comp.protocols.ppp for confirmation.
Notes
Notes: svn path=/head/; revision=37210
Diffstat (limited to 'usr.sbin/ppp/link.c')
-rw-r--r--usr.sbin/ppp/link.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ppp/link.c b/usr.sbin/ppp/link.c
index ead0e142d255..21be93929a80 100644
--- a/usr.sbin/ppp/link.c
+++ b/usr.sbin/ppp/link.c
@@ -23,13 +23,14 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: link.c,v 1.1.2.20 1998/05/01 19:24:59 brian Exp $
+ * $Id: link.c,v 1.2 1998/05/21 21:46:10 brian Exp $
*
*/
#include <sys/types.h>
#include <stdio.h>
+#include <string.h>
#include <termios.h>
#include "mbuf.h"