From 2556e737ec044e39cd8afc6f00cd0f156b9d6ede Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Thu, 19 Oct 2000 03:12:44 +0000 Subject: * 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 --- winsup/cygwin/fhandler_termios.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/cygwin/fhandler_termios.cc') 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); -- cgit v1.2.3