Changeset 93701 in vbox for trunk/src/VBox
- Timestamp:
- Feb 11, 2022 6:58:31 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageNATNetwork.cpp
r93287 r93701 187 187 CHECK_ERROR_BREAK(pNATNet, COMGETTER(NetworkName)(strVal.asOutParam())); 188 188 189 Utf8Str strValUTF8 = Utf8Str(strVal);189 Utf8Str strValUTF8(strVal); 190 190 if (!RTStrSimplePatternMatch(pszFilter, strValUTF8.c_str())) 191 191 continue; … … 623 623 rcExit = handleNATList(a); 624 624 else 625 rcExit = errorSyntax(USAGE_NATNETWORK, Nat::tr("Invalid parameter '%s'"), Utf8Str(a->argv[0]).c_str());625 rcExit = errorSyntax(USAGE_NATNETWORK, Nat::tr("Invalid parameter '%s'"), a->argv[0]); 626 626 return rcExit; 627 627 }
Note:
See TracChangeset
for help on using the changeset viewer.