From 395512ca9a102f442693b3db9df4f769146bf3bb Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Mon, 9 May 2005 06:14:54 +0000 Subject: [PATCH] wrong string where being use when you type echo thx David Nordenberg for notify me about it svn path=/trunk/; revision=15179 --- reactos/subsys/system/cmd/echo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/subsys/system/cmd/echo.c b/reactos/subsys/system/cmd/echo.c index 2c25bf1ed68..d03558c80e7 100644 --- a/reactos/subsys/system/cmd/echo.c +++ b/reactos/subsys/system/cmd/echo.c @@ -61,7 +61,7 @@ INT CommandEcho (LPTSTR cmd, LPTSTR param) ConOutPuts (param); else { - LoadString(CMD_ModuleHandle, STRING_ECHO_HELP4, szMsg, RC_STRING_MAX_SIZE); + LoadString(CMD_ModuleHandle, STRING_ECHO_HELP5, szMsg, RC_STRING_MAX_SIZE); ConOutPrintf(szMsg, bEcho ? D_ON : D_OFF); } }