mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
Marcus Boillat <[email protected]>
- 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:
@@ -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("?") ))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user