mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
[CMD] DATE: The /T option is available only when extensions are enabled.
This commit is contained in:
parent
682875d070
commit
a151893351
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ INT cmd_date(LPTSTR param)
|
|||
/* Check for options */
|
||||
for (i = 0; i < argc; i++)
|
||||
{
|
||||
if (_tcsicmp(arg[i], _T("/t")) == 0)
|
||||
if (bEnableExtensions && (_tcsicmp(arg[i], _T("/T")) == 0))
|
||||
bPrompt = FALSE;
|
||||
|
||||
if ((*arg[i] != _T('/')) && (nDateString == -1))
|
||||
|
|
Loading…
Reference in a new issue