summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2006-08-20 17:37:55 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2006-08-20 17:37:55 +0000
commit1fe6021d75517cb250c2798dcdc48a8fd2c25d4d (patch)
treed5018adad43dec1249a47149edaf5ce6b4ae35e7
parente3603104510774a297a8048c1833577a1eb6d9d4 (diff)
correct order of include files
-rw-r--r--usr.sbin/tcpdump/print-lldp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/tcpdump/print-lldp.c b/usr.sbin/tcpdump/print-lldp.c
index 493e59735d0..63a4f85cb48 100644
--- a/usr.sbin/tcpdump/print-lldp.c
+++ b/usr.sbin/tcpdump/print-lldp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: print-lldp.c,v 1.3 2006/03/28 16:35:51 reyk Exp $ */
+/* $OpenBSD: print-lldp.c,v 1.4 2006/08/20 17:37:54 deraadt Exp $ */
/*
* Copyright (c) 2006 Reyk Floeter <reyk@openbsd.org>
@@ -22,10 +22,10 @@
#include <net/if.h>
-#include <arpa/inet.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/if_ether.h>
+#include <arpa/inet.h>
#include <ctype.h>
#include <stdio.h>