git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1442609 13f79535-47bb-0310-9956-ffa450edef68
@@ -42,6 +42,8 @@ Release 0.23.7 - UNRELEASED
MAPREDUCE-4969. TestKeyValueTextInputFormat test fails with Open JDK 7.
(Arpit Agarwal via tgraves)
+ MAPREDUCE-4953. HadoopPipes misuses fprintf. (Andy Isaacson via tgraves)
+
Release 0.23.6 - UNRELEASED
INCOMPATIBLE CHANGES
@@ -126,7 +126,7 @@ namespace HadoopPipes {
static const char lineSeparator = '\n';
void writeBuffer(const string& buffer) {
- fprintf(stream, quoteString(buffer, "\t\n").c_str());
+ fputs(quoteString(buffer, "\t\n").c_str(), stream);
}
public: