summaryrefslogtreecommitdiffstats
path: root/usr.sbin/npppd/l2tp
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2014-07-21 01:51:10 +0000
committerguenther <guenther@openbsd.org>2014-07-21 01:51:10 +0000
commitbe9b70502a319be1934f8cfd5be7f470be741ce6 (patch)
treecd6b19aae8d5ed5b62dea268c748e3a6bbb05279 /usr.sbin/npppd/l2tp
parentsync (diff)
downloadwireguard-openbsd-be9b70502a319be1934f8cfd5be7f470be741ce6.tar.xz
wireguard-openbsd-be9b70502a319be1934f8cfd5be7f470be741ce6.zip
Switch from <sys/endian.h> or <machine/endian.h> to the new,
being-standardized <endian.h> ok deraadt@ millert@ beck@
Diffstat (limited to 'usr.sbin/npppd/l2tp')
-rw-r--r--usr.sbin/npppd/l2tp/l2tp_ctrl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/npppd/l2tp/l2tp_ctrl.c b/usr.sbin/npppd/l2tp/l2tp_ctrl.c
index 012e889a938..802da768c1b 100644
--- a/usr.sbin/npppd/l2tp/l2tp_ctrl.c
+++ b/usr.sbin/npppd/l2tp/l2tp_ctrl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: l2tp_ctrl.c,v 1.17 2014/05/07 01:20:53 tedu Exp $ */
+/* $OpenBSD: l2tp_ctrl.c,v 1.18 2014/07/21 01:51:11 guenther Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
@@ -26,15 +26,15 @@
* SUCH DAMAGE.
*/
/**@file Control connection processing functions for L2TP LNS */
-/* $Id: l2tp_ctrl.c,v 1.17 2014/05/07 01:20:53 tedu Exp $ */
+/* $Id: l2tp_ctrl.c,v 1.18 2014/07/21 01:51:11 guenther Exp $ */
#include <sys/types.h>
#include <sys/param.h>
#include <sys/time.h>
#include <sys/socket.h>
-#include <sys/endian.h>
#include <netinet/in.h>
#include <net/if.h>
#include <arpa/inet.h>
+#include <endian.h>
#include <errno.h>
#include <event.h>
#include <ifaddrs.h>