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_termios.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_termios.cc')
-rw-r--r--winsup/cygwin/fhandler_termios.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_termios.cc b/winsup/cygwin/fhandler_termios.cc
index 72b2e998d..9a91cb915 100644
--- a/winsup/cygwin/fhandler_termios.cc
+++ b/winsup/cygwin/fhandler_termios.cc
@@ -283,7 +283,7 @@ fhandler_termios::line_edit (const char *rptr, int nread, int always_accept)
}
if (tc->ti.c_iflag & IUCLC && isupper (c))
- c = tolower (c);
+ c = cyg_tolower (c);
if (tc->ti.c_lflag & ECHO)
doecho (&c, 1);