cmd: Rename unicodePipes variable.

This commit is contained in:
Frédéric Delanoy 2011-11-29 14:39:28 +01:00 committed by Alexandre Julliard
parent 1a8df977ac
commit 513ee9a3aa
1 changed files with 4 additions and 4 deletions

View File

@ -45,7 +45,7 @@ WCHAR quals[MAX_PATH], param1[MAXSTRING], param2[MAXSTRING];
BATCH_CONTEXT *context = NULL; BATCH_CONTEXT *context = NULL;
extern struct env_stack *pushd_directories; extern struct env_stack *pushd_directories;
static const WCHAR *pagedMessage = NULL; static const WCHAR *pagedMessage = NULL;
static BOOL unicodePipes = FALSE; static BOOL unicodeOutput = FALSE;
#define MAX_WRITECONSOLE_SIZE 65535 #define MAX_WRITECONSOLE_SIZE 65535
@ -89,7 +89,7 @@ static void WCMD_output_asis_len(const WCHAR *message, DWORD len, HANDLE device)
DWORD convertedChars; DWORD convertedChars;
char *buffer; char *buffer;
if (!unicodePipes) { if (!unicodeOutput) {
if (!(buffer = get_file_buffer())) if (!(buffer = get_file_buffer()))
return; return;
@ -2259,9 +2259,9 @@ int wmain (int argc, WCHAR *argvW[])
} else if (tolowerW(c)=='s') { } else if (tolowerW(c)=='s') {
opt_s = TRUE; opt_s = TRUE;
} else if (tolowerW(c)=='a') { } else if (tolowerW(c)=='a') {
unicodePipes=FALSE; unicodeOutput = FALSE;
} else if (tolowerW(c)=='u') { } else if (tolowerW(c)=='u') {
unicodePipes=TRUE; unicodeOutput = TRUE;
} else if (tolowerW(c)=='t' && (*argvW)[2]==':') { } else if (tolowerW(c)=='t' && (*argvW)[2]==':') {
opt_t=strtoulW(&(*argvW)[3], NULL, 16); opt_t=strtoulW(&(*argvW)[3], NULL, 16);
} else if (tolowerW(c)=='x' || tolowerW(c)=='y') { } else if (tolowerW(c)=='x' || tolowerW(c)=='y') {