Changeset 64193 in vbox
- Timestamp:
- Oct 11, 2016 12:18:32 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/NATEngineImpl.cpp
r64166 r64193 22 22 #include "GuestOSTypeImpl.h" 23 23 24 #include <iprt/ctype.h>25 24 #include <iprt/string.h> 26 25 #include <iprt/cpp/utils.h> … … 271 270 for (s = name.c_str(); (c = *s) != '\0'; ++s) 272 271 { 273 if (RT_C_IS_SPACE(c))274 return setError(E_INVALIDARG,275 tr("Whitespace in NAT rule name"));276 277 272 if (c == ',') /* we use csv in several places e.g. GetRedirects or natpf<N> argument */ 278 273 return setError(E_INVALIDARG,
Note:
See TracChangeset
for help on using the changeset viewer.