Only check for utun if tun_device was given

Fixes github issue #37 hopefully.
This commit is contained in:
Erik Ekman 2020-07-03 16:48:05 +02:00
parent 814a1fd7b0
commit 07b2978326

View file

@ -416,6 +416,7 @@ open_tun(const char *tun_device)
int tun_fd;
char tun_name[50];
if (tun_device != NULL) {
#ifdef DARWIN
if (!strncmp(tun_device, "utun", 4)) {
tun_fd = open_utun(tun_device);
@ -425,7 +426,6 @@ open_tun(const char *tun_device)
}
#endif
if (tun_device != NULL) {
snprintf(tun_name, sizeof(tun_name), "/dev/%s", tun_device);
strncpy(if_name, tun_device, sizeof(if_name));
if_name[sizeof(if_name)-1] = '\0';