diff options
Diffstat (limited to 'node')
-rw-r--r-- | node/EthernetTap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/EthernetTap.cpp b/node/EthernetTap.cpp index 231fde06..96d2839a 100644 --- a/node/EthernetTap.cpp +++ b/node/EthernetTap.cpp @@ -1168,7 +1168,7 @@ EthernetTap::EthernetTap( Utils::snprintf(tapPath,sizeof(tapPath),"\\\\.\\Global\\%s.tap",_myDeviceInstanceId.c_str()); _tap = CreateFileA(tapPath,GENERIC_READ|GENERIC_WRITE,0,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_SYSTEM|FILE_FLAG_OVERLAPPED,NULL); if (_tap == INVALID_HANDLE_VALUE) - throw std::runtime_error("unable to open tap in \\\\.\\Global\\ namespace"); + throw std::runtime_error(std::string("unable to open tap device ")+tapPath); // Set media status to enabled uint32_t tmpi = 1; |