Changeset 69103 in vbox for trunk/src/VBox
- Timestamp:
- Oct 17, 2017 10:08:18 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/log.cpp
r69101 r69103 2286 2286 /* check no prefix. */ 2287 2287 fNo = false; 2288 if (pszValue[0] == 'n' && pszValue[1] == 'o') 2288 if ( pszValue[0] == 'n' 2289 && pszValue[1] == 'o' 2290 && ( pszValue[2] != 'd' 2291 || pszValue[3] != 'e' 2292 || pszValue[4] != 'n' 2293 || pszValue[5] != 'y')) 2289 2294 { 2290 2295 fNo = true;
Note:
See TracChangeset
for help on using the changeset viewer.