diff options
-rw-r--r-- | src/detect.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/detect.c b/src/detect.c index 3a97816c..b0963182 100644 --- a/src/detect.c +++ b/src/detect.c @@ -209,6 +209,8 @@ static void detect_newlink(unsigned short type, int index, devtype = CONNMAN_DEVICE_TYPE_UNKNOWN; else if (g_str_has_prefix(devname, "vmnet") == TRUE) devtype = CONNMAN_DEVICE_TYPE_UNKNOWN; + else if (g_str_has_prefix(devname, "vboxnet") == TRUE) + devtype = CONNMAN_DEVICE_TYPE_UNKNOWN; else if (stat(bridge_path, &st) == 0 && (st.st_mode & S_IFDIR)) devtype = CONNMAN_DEVICE_TYPE_UNKNOWN; else if (stat(wimax_path, &st) == 0 && (st.st_mode & S_IFDIR)) |