diff options
| author | Brian Somers <brian@FreeBSD.org> | 1999-05-12 09:54:33 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 1999-05-12 09:54:33 +0000 |
| commit | ef868a34adcf8ce585d6eb891480a93f0001769c (patch) | |
| tree | f527491ed5f8103f61b7d3831bb9ee7b69e41b43 /usr.sbin/ppp/sync.c | |
| parent | 6815097bf774651c1f6c3b4052fd7eb5ee9aaac0 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/ppp/sync.c')
| -rw-r--r-- | usr.sbin/ppp/sync.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ppp/sync.c b/usr.sbin/ppp/sync.c index a65b51259bfc..4f6afe0fcf55 100644 --- a/usr.sbin/ppp/sync.c +++ b/usr.sbin/ppp/sync.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sync.c,v 1.1 1999/05/08 11:07:40 brian Exp $ + * $Id: sync.c,v 1.2 1999/05/12 09:49:02 brian Exp $ */ #include <sys/types.h> @@ -49,7 +49,7 @@ #include "physical.h" static struct mbuf * -async_LayerPush(struct bundle *bundle, struct link *l, struct mbuf *bp, +sync_LayerPush(struct bundle *bundle, struct link *l, struct mbuf *bp, int pri, u_short *proto) { log_DumpBp(LogSYNC, "Write", bp); @@ -75,4 +75,4 @@ sync_LayerPull(struct bundle *b, struct link *l, struct mbuf *bp, return bp; } -struct layer synclayer = { LAYER_SYNC, "sync", NULL, sync_LayerPull }; +struct layer synclayer = { LAYER_SYNC, "sync", sync_LayerPush, sync_LayerPull }; |
