diff options
author | 2008-11-01 21:41:02 +0000 | |
---|---|---|
committer | 2008-11-01 21:41:02 +0000 | |
commit | e0056b29055320232ba4b1560b443aeb4d9dcb81 (patch) | |
tree | 506f1572f2973904870ae326ce74254b36a4b0a1 | |
parent | Grab a reference to the trace vnode of the process when traversing the (diff) | |
download | wireguard-openbsd-e0056b29055320232ba4b1560b443aeb4d9dcb81.tar.xz wireguard-openbsd-e0056b29055320232ba4b1560b443aeb4d9dcb81.zip |
correct order of includes
-rw-r--r-- | usr.sbin/smtpd/store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/store.c b/usr.sbin/smtpd/store.c index a67e4e4b1fd..e42ef7c81e6 100644 --- a/usr.sbin/smtpd/store.c +++ b/usr.sbin/smtpd/store.c @@ -22,8 +22,8 @@ #include <sys/ioctl.h> #include <sys/socket.h> -#include <arpa/inet.h> #include <netinet/in.h> +#include <arpa/inet.h> #include <dirent.h> #include <err.h> |