summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2003-12-15 15:14:29 +0000
committerSteve Huston <shuston@riverace.com>2003-12-15 15:14:29 +0000
commitcebade7f24df7197c218a01f30d80faf5c498fa0 (patch)
treebdbb5032772fdac546616292551c5494ddbe3872
parent8fce83fbbbc95a1e93b55ca997f8f036145c4963 (diff)
downloadATCD-cebade7f24df7197c218a01f30d80faf5c498fa0.tar.gz
ChangeLogTag:Mon Dec 15 10:06:17 2003 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog9
-rw-r--r--ace/OS_NS_stdio.cpp2
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1c4521a1e75..04461aa2cc0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Mon Dec 15 10:06:17 2003 Steve Huston <shuston@riverace.com>
+
+ * ace/OS_NS_stdio.cpp (gets): Reverted this change:
+ Thu Dec 11 18:13:29 2003 Steve Huston <shuston@riverace.com>
+ It broke the Borland build and wasn't a very good fix for the
+ AIX situation either. Since Riverace is dropping AIX 4.3 support
+ at ACE 5.4, I'm not going to push this issue. It appears to be a
+ compiler issue with Visual Age C++ version 5.
+
Mon Dec 15 07:29:27 2003 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/gnu.mpd:
diff --git a/ace/OS_NS_stdio.cpp b/ace/OS_NS_stdio.cpp
index bdb8ca16e14..2abc599be40 100644
--- a/ace/OS_NS_stdio.cpp
+++ b/ace/OS_NS_stdio.cpp
@@ -197,7 +197,7 @@ ACE_OS::gets (char *str, int n)
if (n == 0) str = 0;
else n--;
- while ((c = ACE_STD_NAMESPACE::getchar ()) != '\n')
+ while ((c = getchar ()) != '\n')
{
if (c == EOF && errno == EINTR)