Merge pull request #37 from farrokhi/dev

Fix build on FreeBSD
This commit is contained in:
Luca Deri
2018-09-01 18:07:44 +02:00
committed by GitHub
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ N2N_OSNAME=$(shell uname -p)
########
CC=gcc
CC?=gcc
DEBUG?=-g3
#OPTIMIZATION?=-O2
WARN?=-Wall -Wshadow -Wpointer-arith -Wmissing-declarations -Wnested-externs
@@ -141,4 +141,4 @@ push:
fi
.PHONY: steps build push
# End Docker builder section
# End Docker builder section
+2 -2
View File
@@ -20,7 +20,7 @@
#ifdef __FreeBSD__
void tun_close(tuntap_dev *device);
void tuntap_close(tuntap_dev *device);
/* ********************************** */
@@ -78,7 +78,7 @@ int tuntap_open(tuntap_dev *device /* ignored */,
fd = popen(buf, "r");
if(fd < 0) {
tun_close(device);
tuntap_close(device);
return(-1);
} else {
int a, b, c, d, e, f;