From 79916c273dcce6afb5ba7f395e427ce3fa376dfd Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 1 Aug 2002 07:25:25 +0000 Subject: [PATCH] remove the "exec " from the command for running menu stuff so that normal shell things work right in the menu --- src/Util.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Util.cc b/src/Util.cc index 3c494901..6e2ea152 100644 --- a/src/Util.cc +++ b/src/Util.cc @@ -169,13 +169,11 @@ void bexec(const string& command, const string& displaystring) { setsid(); int ret = putenv(const_cast(displaystring.c_str())); assert(ret != -1); - string cmd = "exec "; - cmd += command; - ret = execl("/bin/sh", "/bin/sh", "-c", cmd.c_str(), NULL); + ret = execl("/bin/sh", "/bin/sh", "-c", command.c_str(), NULL); exit(ret); } #else // __EMX__ - spawnlp(P_NOWAIT, "cmd.exe", "cmd.exe", "/c", command, NULL); + spawnlp(P_NOWAIT, "cmd.exe", "cmd.exe", "/c", command.c_str(), NULL); #endif // !__EMX__ } -- 2.39.2