Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2000-10-19 07:12:44 +0400
committerDJ Delorie <dj@redhat.com>2000-10-19 07:12:44 +0400
commit2556e737ec044e39cd8afc6f00cd0f156b9d6ede (patch)
treefaedfc2543659c41638054dca1260321647c5762 /winsup/cygwin/fhandler_console.cc
parentcc55c579a361e3dd8bd4766530e1e6de1eb71664 (diff)
* Makefile.in: add miscfuncs.cc
* miscfuncs.cc: new, miscellaneous functions * winsup.h: define table-driven tolower/toupper * environ.cc: use them * fhandler_console.cc: ditto * fhandler_termios: ditto * path.cc: ditto (strncasematch, strcasematch, strcasestr): move to miscfuncs.cc
Diffstat (limited to 'winsup/cygwin/fhandler_console.cc')
-rw-r--r--winsup/cygwin/fhandler_console.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_console.cc b/winsup/cygwin/fhandler_console.cc
index 1d05ddcee..4da619b4b 100644
--- a/winsup/cygwin/fhandler_console.cc
+++ b/winsup/cygwin/fhandler_console.cc
@@ -228,7 +228,7 @@ fhandler_console::read (void *pv, size_t buflen)
else
{
tmp[0] = '\033';
- tmp[1] = tolower (tmp[1]);
+ tmp[1] = cyg_tolower (tmp[1]);
toadd = tmp;
nread++;
}