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:
authorChristopher Faylor <me@cgf.cx>2000-08-12 08:48:44 +0400
committerChristopher Faylor <me@cgf.cx>2000-08-12 08:48:44 +0400
commit9015e0fb8c0fbb98f919dd3726ddbc97e46bd9fd (patch)
tree14cc365950ecf7a837508a410cf4dd0fa4ab3b97 /winsup/cygwin/passwd.cc
parent86bf05d54094008ba6e8a1c692d4a71879ee6590 (diff)
Rename hinfo -> dtable. Name the former dtable array 'fdtab'.
Diffstat (limited to 'winsup/cygwin/passwd.cc')
-rw-r--r--winsup/cygwin/passwd.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/passwd.cc b/winsup/cygwin/passwd.cc
index ee4fd4a65..6dd01295d 100644
--- a/winsup/cygwin/passwd.cc
+++ b/winsup/cygwin/passwd.cc
@@ -257,14 +257,14 @@ getpass (const char * prompt)
if (passwd_state == uninitialized)
read_etc_passwd();
- if (dtable.not_open (0))
+ if (fdtab.not_open (0))
{
set_errno (EBADF);
pass[0] = '\0';
}
else
{
- fhandler_base *fhstdin = dtable[0];
+ fhandler_base *fhstdin = fdtab[0];
fhstdin->tcgetattr (&ti);
newti = ti;
newti.c_lflag &= ~ECHO;