Changeset 46489 in vbox
- Timestamp:
- Jun 11, 2013 3:24:29 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/getopt.cpp
r45356 r46489 233 233 for (uint32_t i = 0; i < RT_ELEMENTS(g_aStdOptions); i++) 234 234 if ( !strcmp(pszOption, g_aStdOptions[i].pszLong) 235 || ( pOpt->fFlags & RTGETOPT_FLAG_ICASE235 || ( g_aStdOptions[i].fFlags & RTGETOPT_FLAG_ICASE 236 236 && !RTStrICmp(pszOption, g_aStdOptions[i].pszLong))) 237 237 return &g_aStdOptions[i];
Note:
See TracChangeset
for help on using the changeset viewer.