* fhandler_console.cc (fhandler_console::open): Reinstate setting of flags.

This commit is contained in:
Christopher Faylor
2002-05-31 22:53:25 +00:00
parent de86e35bc4
commit 8e74c3207f
7 changed files with 16 additions and 7 deletions

View File

@ -1169,3 +1169,5 @@ fhandler_base::closedir (DIR *)
set_errno (ENOTDIR);
return -1;
}
bool fhandler_base::get_w_binary () { return FHISSETF (WBINSET) ? FHISSETF (WBINARY) : 1; }
bool fhandler_base::get_r_binary () { return FHISSETF (RBINSET) ? FHISSETF (RBINARY) : 1; }