mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:15:59 +00:00
Marcus Boillat <ka6602-280@online.de>
- ipconfig should also parse parameters starting with "-" (undocumented feature, tested on Windows XP, Vista and Windows 7). See issue #5067 for more details. svn path=/trunk/; revision=44946
This commit is contained in:
parent
c2773414b9
commit
a5a0bfbeb2
1 changed files with 1 additions and 1 deletions
|
@ -693,7 +693,7 @@ int main(int argc, char *argv[])
|
|||
ProcessHeap = GetProcessHeap();
|
||||
|
||||
/* Parse command line for options we have been given. */
|
||||
if ( (argc > 1)&&(argv[1][0]=='/') )
|
||||
if ( (argc > 1)&&(argv[1][0]=='/' || argv[1][0]=='-') )
|
||||
{
|
||||
if( !_tcsicmp( &argv[1][1], _T("?") ))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue