Changeset 92088 in vbox
- Timestamp:
- Oct 26, 2021 4:02:51 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147902
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/adpctl/VBoxNetAdpCtl.cpp
r91771 r92088 977 977 for (int line = 1; fgets(szLine, sizeof(szLine), fp); ++line) 978 978 { 979 pszToken = strtok(szLine, " \t\n"); 979 980 /* Skip anything except '*' lines */ 980 if ( strcmp("*", strtok(szLine, " \t\n")))981 if (pszToken == NULL || strcmp("*", pszToken)) 981 982 continue; 982 983 /* Match the specified address against each network */
Note:
See TracChangeset
for help on using the changeset viewer.