13 lines
462 B
Text
13 lines
462 B
Text
Don't include garbage after the interface name. From upstream.
|
|
|
|
--- src/devreader-bsd.cpp.orig Sun Feb 19 13:57:42 2012
|
|
+++ src/devreader-bsd.cpp Sun Feb 19 13:57:54 2012
|
|
@@ -91,7 +91,7 @@ list<string> DevReaderBsd::findAllDevices()
|
|
if(sdl->sdl_family != AF_LINK)
|
|
continue;
|
|
|
|
- interfaceNames.push_back(string(sdl->sdl_data));
|
|
+ interfaceNames.push_back(string(sdl->sdl_data, sdl->sdl_nlen));
|
|
}
|
|
|
|
free(buf);
|