Commented out unused code.

This commit is contained in:
tastytea 2019-08-06 19:31:48 +02:00
parent 1b0fd8cd75
commit dcef2b8a28
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 22 additions and 22 deletions

View File

@ -79,35 +79,35 @@ int launch(const string &args)
int main()
{
string args = read_input();
size_t pos = args.find("TEMPFILE");
string tmpfile;
// size_t pos = args.find("TEMPFILE");
// string tmpfile;
if (pos != string::npos)
{
try
{
tmpfile = fs::temp_directory_path() / "remwharead.html";
args.replace(pos, 8, tmpfile);
}
catch (const fs::filesystem_error &e)
{
send_message("Could not create temporary file.");
return 3;
}
}
// if (pos != string::npos)
// {
// try
// {
// tmpfile = fs::temp_directory_path() / "remwharead.html";
// args.replace(pos, 8, tmpfile);
// }
// catch (const fs::filesystem_error &e)
// {
// send_message("Could not create temporary file.");
// return 3;
// }
// }
int ret = launch(args);
if (ret == 0)
{
if (!tmpfile.empty())
{
send_message("FILE:" + tmpfile);
}
else
{
// if (!tmpfile.empty())
// {
// send_message("FILE:" + tmpfile);
// }
// else
// {
send_message("Command successful.");
}
// }
}
else
{