Browse Source

corrects bug: wrong case entered in MultiplexStreamBuf::Output::write_string() in panda/src/downloader/multiplexStreamBuf.cxx

Closes #902
Joel Stienlet 5 years ago
parent
commit
f2e67169bc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/downloader/multiplexStream.I

+ 1 - 1
panda/src/downloader/multiplexStream.I

@@ -37,7 +37,7 @@ add_ostream(std::ostream *out, bool delete_later) {
 INLINE bool MultiplexStream::
 INLINE bool MultiplexStream::
 add_stdio_file(FILE *fout, bool close_when_done) {
 add_stdio_file(FILE *fout, bool close_when_done) {
   _msb.add_output(MultiplexStreamBuf::BT_line,
   _msb.add_output(MultiplexStreamBuf::BT_line,
-                  MultiplexStreamBuf::OT_ostream,
+                  MultiplexStreamBuf::OT_stdio,
                   nullptr, fout, close_when_done);
                   nullptr, fout, close_when_done);
   return true;
   return true;
 }
 }