diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2015-11-06 09:04:37 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2015-11-06 09:04:37 +0000 |
commit | 3d6d2861dec4f5525cb84fc9c07bb205cd9294cb (patch) | |
tree | cc6d800fceb3339d1d25c66dd3984239cc874520 /sys/net/if_pppvar.h | |
parent | dd812449ef259a31825915ce5843dbd99730ef9d (diff) |
unbreak tree after src/sys/net/if_ppp.c r1.95.
i forgot to commit the change of the npqueue type in the header.
noticed by benoit lecocq
Diffstat (limited to 'sys/net/if_pppvar.h')
-rw-r--r-- | sys/net/if_pppvar.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/net/if_pppvar.h b/sys/net/if_pppvar.h index 9735b48b3bb..03ac473dd4b 100644 --- a/sys/net/if_pppvar.h +++ b/sys/net/if_pppvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pppvar.h,v 1.17 2015/06/03 00:50:09 dlg Exp $ */ +/* $OpenBSD: if_pppvar.h,v 1.18 2015/11/06 09:04:36 dlg Exp $ */ /* $NetBSD: if_pppvar.h,v 1.5 1997/01/03 07:23:29 mikel Exp $ */ /* * if_pppvar.h - private structures and declarations for PPP. @@ -111,8 +111,7 @@ struct ppp_softc { struct mbuf_queue sc_inq; /* queue of input packets for daemon */ struct ifqueue sc_fastq; /* interactive output packet q */ struct mbuf *sc_togo; /* output packet ready to go */ - struct mbuf *sc_npqueue; /* output packets not to be sent yet */ - struct mbuf **sc_npqtail; /* ptr to last next ptr in npqueue */ + struct mbuf_list sc_npqueue; /* output packets not to be sent yet */ struct pppstat sc_stats; /* count of bytes/pkts sent/rcvd */ caddr_t sc_bpf; /* hook for BPF */ enum NPmode sc_npmode[NUM_NP]; /* what to do with each NP */ |