From abed5965caf2efe030b4717460a2faa7ac5de421 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Wed, 17 Aug 2005 18:23:39 +0000 Subject: [PATCH] * textbinary.sgml: Correct incorrect information about ability to specify text mode in fopen(). --- winsup/doc/ChangeLog | 5 +++++ winsup/doc/textbinary.sgml | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/winsup/doc/ChangeLog b/winsup/doc/ChangeLog index 274b9c5ff..d87b4a6d2 100644 --- a/winsup/doc/ChangeLog +++ b/winsup/doc/ChangeLog @@ -1,3 +1,8 @@ +2005-08-17 Christopher Faylor + + * textbinary.sgml: Correct incorrect information about ability to + specify text mode in fopen(). + 2005-08-05 Joshua Daniel Franklin * cygwin.dsl: Add default DOCTYPE and output filename. diff --git a/winsup/doc/textbinary.sgml b/winsup/doc/textbinary.sgml index 3e1274db2..1e74c5861 100644 --- a/winsup/doc/textbinary.sgml +++ b/winsup/doc/textbinary.sgml @@ -158,8 +158,8 @@ specified with the flag O_BINARY and text mode with fcntl.h. In the fopen() function call, binary mode can be -specified by adding a b to the mode string. There is no -direct way to specify text mode. +specified by adding a b to the mode string. Text mode is specified +by adding a t to the mode string. The mode of a file can be changed by the call setmode(fd,mode) where fd is a file