* environ.cc (known): Remove "binmode" option.

* fhandler.cc (binmode): Remove.
	(fhandler_base::set_flags): Accommodate binmode removal.
	* path.h (path_conv::set_binary): Remove.
	* pipe.cc (pipe): Create pipes always as binary pipes.
	* winsup.h (binmode): Remove declaration.
This commit is contained in:
Corinna Vinschen
2008-07-18 08:16:40 +00:00
parent d2af9effc5
commit fd8e5366aa
6 changed files with 11 additions and 11 deletions

View File

@ -193,7 +193,6 @@ class path_conv
return dont_know_if_executable;
}
void set_binary () {path_flags |= PATH_BINARY;}
void set_symlink (DWORD n) {path_flags |= PATH_SYMLINK; symlink_length = n;}
void set_has_symlinks () {path_flags |= PATH_HAS_SYMLINKS;}
void set_exec (int x = 1) {path_flags |= x ? PATH_EXEC : PATH_NOTEXEC;}