Skip to content

Commit

Permalink
Added note to fix /dev/tap problems
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaderi committed Dec 22, 2018
1 parent f02b68f commit 1e8b618
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tuntap_osx.c
Expand Up @@ -46,7 +46,8 @@ int tuntap_open(tuntap_dev *device /* ignored */,
}

if(device->fd < 0) {
traceEvent(TRACE_ERROR, "Unable to open tap device");
traceEvent(TRACE_ERROR, "Unable to open tap device %s", tap_device);
traceEvent(TRACE_ERROR, "Please read https://github.com/ntop/n2n/blob/dev/doc/n2n_on_MacOS.txt");
return(-1);
} else {
char buf[256];
Expand Down

0 comments on commit 1e8b618

Please sign in to comment.