Skip to content

Commit

Permalink
fix for disallowed chars in win file transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
jtwhite79 committed Sep 23, 2022
1 parent e9b8d49 commit d5a5f57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/run_managers/yamr/RunManagerPanther.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1504,7 +1504,7 @@ void RunManagerPanther::process_message(int i_sock)
pair<map<string ,ofstream*>::iterator, bool> ret = open_file_trans_streams.insert(pair<string,ofstream*>(fnames.second,new ofstream));
ofstream& out = *ret.first->second;
vector<int8_t> ibuf = net_pack.get_data();
cout << reinterpret_cast<char*>(ibuf.data()) << endl;
//cout << reinterpret_cast<char*>(ibuf.data()) << endl;
if (out.bad())
{
ss.str("");
Expand Down

0 comments on commit d5a5f57

Please sign in to comment.