summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-07-22 02:58:33 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-07-22 02:58:33 +0000
commit38fa2985d8854510cd3e4fcdba61c0f89e631c31 (patch)
treee6df072d496a2d2f6cb19a6f2cd3fce7c2e8b700
parent6d6114333e56d4799ac0d75aa5a0119c2eb33ccd (diff)
Correct the initializer for tunnconf_default_pptp
ok yasuoka@
-rw-r--r--usr.sbin/npppd/npppd/ppp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/npppd/npppd/ppp.c b/usr.sbin/npppd/npppd/ppp.c
index 10ec94123e7..b125861134b 100644
--- a/usr.sbin/npppd/npppd/ppp.c
+++ b/usr.sbin/npppd/npppd/ppp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ppp.c,v 1.21 2014/05/30 05:06:00 yasuoka Exp $ */
+/* $OpenBSD: ppp.c,v 1.22 2014/07/22 02:58:32 guenther Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
@@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
-/* $Id: ppp.c,v 1.21 2014/05/30 05:06:00 yasuoka Exp $ */
+/* $Id: ppp.c,v 1.22 2014/07/22 02:58:32 guenther Exp $ */
/**@file
* This file provides PPP(Point-to-Point Protocol, RFC 1661) and
* {@link :: _npppd_ppp PPP instance} related functions.
@@ -1227,7 +1227,7 @@ struct tunnconf tunnconf_default_pptp = {
.hostname = NULL,
.vendor_name = NULL,
.listen = TAILQ_HEAD_INITIALIZER(
- tunnconf_default_l2tp.proto.l2tp.listen),
+ tunnconf_default_pptp.proto.pptp.listen),
/* .echo_interval, */
/* .echo_timeout, */
}