Skip to content
Snippets Groups Projects
Commit ef9a31ee authored by Francois Henrotte's avatar Francois Henrotte
Browse files

revert

parent d955a57c
No related branches found
No related tags found
No related merge requests found
......@@ -208,12 +208,7 @@ int SystemCall(const std::string &command, bool blocking)
return 1;
}
std::string cmd(command);
int pos;
if(!blocking) cmd.append(" &");
if((pos=cmd.find("incomp_ssh")) != std::string::npos){
cmd.assign(cmd.substr(pos+7));
cmd.append(" '");
}
if(!blocking) cmd += " &";
Msg::Info("Calling <%s>", cmd.c_str());
return system(cmd.c_str());
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment