Commit 656b6273 authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

cmd.exe: Use WCMD_CURRENTTIME resource to show the time.

parent fa8cd743
...@@ -2135,7 +2135,7 @@ void WCMD_setshow_time (void) { ...@@ -2135,7 +2135,7 @@ void WCMD_setshow_time (void) {
GetLocalTime(&st); GetLocalTime(&st);
if (GetTimeFormat (LOCALE_USER_DEFAULT, 0, &st, NULL, if (GetTimeFormat (LOCALE_USER_DEFAULT, 0, &st, NULL,
curtime, sizeof(curtime)/sizeof(WCHAR))) { curtime, sizeof(curtime)/sizeof(WCHAR))) {
WCMD_output (WCMD_LoadMessage(WCMD_CURRENTDATE), curtime); WCMD_output (WCMD_LoadMessage(WCMD_CURRENTTIME), curtime);
if (strstrW (quals, parmT) == NULL) { if (strstrW (quals, parmT) == NULL) {
WCMD_output (WCMD_LoadMessage(WCMD_NEWTIME)); WCMD_output (WCMD_LoadMessage(WCMD_NEWTIME));
WCMD_ReadFile (GetStdHandle(STD_INPUT_HANDLE), buffer, WCMD_ReadFile (GetStdHandle(STD_INPUT_HANDLE), buffer,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment