aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ppp/mbuf.c
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1998-06-15 19:06:25 +0000
committerBrian Somers <brian@FreeBSD.org>1998-06-15 19:06:25 +0000
commitc9e11a112d47edb5544b4bbe115837c89329c798 (patch)
tree40253fa04eff7ff4c06bd22c3f1bb07e6c19738a /usr.sbin/ppp/mbuf.c
parent30291ffb15d7e4b02d0e8de225a57dd49f655d4e (diff)
downloadsrc-c9e11a112d47edb5544b4bbe115837c89329c798.tar.gz
src-c9e11a112d47edb5544b4bbe115837c89329c798.zip
Fix a rather nasty use of `static'. This caused a SEGV
when running ``link * load label'' as we ended up recursing back into command_Interpret after nuking our command arg list.
Notes
Notes: svn path=/head/; revision=37009
Diffstat (limited to 'usr.sbin/ppp/mbuf.c')
-rw-r--r--usr.sbin/ppp/mbuf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ppp/mbuf.c b/usr.sbin/ppp/mbuf.c
index fc30aeb09d59..814201496da4 100644
--- a/usr.sbin/ppp/mbuf.c
+++ b/usr.sbin/ppp/mbuf.c
@@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: mbuf.c,v 1.13.2.11 1998/05/01 19:25:19 brian Exp $
+ * $Id: mbuf.c,v 1.14 1998/05/21 21:46:46 brian Exp $
*
*/
#include <sys/types.h>
@@ -28,6 +28,7 @@
#include <sysexits.h>
#include <termios.h>
+#include "defs.h"
#include "command.h"
#include "mbuf.h"
#include "log.h"