about summary refs log tree commit diff
path: root/server.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-11-06 01:03:04 -0500
committerJune McEnroe <june@causal.agency>2019-11-06 01:03:04 -0500
commitee15889c433bb692e48f8e6e68016d3d0995c04e (patch)
treee2db39f02735c1d1c7ae6cc359e1554619f333b6 /server.c
parentClean up bounce.c (diff)
downloadpounce-ee15889c433bb692e48f8e6e68016d3d0995c04e.tar.gz
pounce-ee15889c433bb692e48f8e6e68016d3d0995c04e.zip
Use explicit_bzero from LibreSSL
Diffstat (limited to 'server.c')
-rw-r--r--server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server.c b/server.c
index cb11d84..4510138 100644
--- a/server.c
+++ b/server.c
@@ -14,8 +14,6 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#include "bounce.h"
-
 #include <assert.h>
 #include <err.h>
 #include <netdb.h>
@@ -29,6 +27,8 @@
 #include <tls.h>
 #include <unistd.h>
 
+#include "bounce.h"
+
 static struct tls *client;
 
 void serverConfig(bool insecure, const char *cert, const char *priv) {