diff options
author | brian <brian@FreeBSD.org> | 2000-06-22 20:51:03 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 2000-06-22 20:51:03 +0000 |
commit | 5008f3663ffe019323d6f8b1017e942c2f688779 (patch) | |
tree | 448326ed300f34fa3c065e490297b325e5759964 /usr.sbin/ppp/exec.c | |
parent | 690ace5c143f38febe730a7de01303519c94d7e6 (diff) | |
download | FreeBSD-src-5008f3663ffe019323d6f8b1017e942c2f688779.zip FreeBSD-src-5008f3663ffe019323d6f8b1017e942c2f688779.tar.gz |
Correct PPPoE in multi-link mode
Submitted by: jason@OpenBSD.org
Diffstat (limited to 'usr.sbin/ppp/exec.c')
-rw-r--r-- | usr.sbin/ppp/exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ppp/exec.c b/usr.sbin/ppp/exec.c index 033729b..898d143 100644 --- a/usr.sbin/ppp/exec.c +++ b/usr.sbin/ppp/exec.c @@ -89,7 +89,7 @@ exec_iov2device(int type, struct physical *p, struct iovec *iov, { if (type == EXEC_DEVICE) { free(iov[(*niov)++].iov_base); - physical_SetupStack(p, execdevice.name, PHYSICAL_FORCE_ASYNC); + physical_SetupStack(p, execdevice.name, PHYSICAL_NOFORCE); return &execdevice; } |