summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-16 23:05:58 +0000
committerDana Jansens <danakj@orodu.net>2003-01-16 23:05:58 +0000
commit3a83fe7e6cd2fa65a6f54a91bb28fa96cff24332 (patch)
treec59616325ffeccc074407aa93bd91b6d8a0ed11b
parent035f7d3ff483238c801fc785fc8fd2dac0e91cfc (diff)
exec a requested new process via /bin/sh to allow for command line args, the same way otk::bexec does it.
-rw-r--r--src/openbox.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/openbox.cc b/src/openbox.cc
index 89948118..d599e7bf 100644
--- a/src/openbox.cc
+++ b/src/openbox.cc
@@ -199,10 +199,8 @@ Openbox::~Openbox()
if (_restart) {
if (!_restart_prog.empty()) {
- const std::string &dstr =
- otk::display->screenInfo(first_screen)->displayString();
- otk::putenv(const_cast<char *>(dstr.c_str()));
- execlp(_restart_prog.c_str(), _restart_prog.c_str(), NULL);
+ otk::putenv(otk::display->screenInfo(first_screen)->displayString());
+ execl("/bin/sh", "/bin/sh", "-c", _restart_prog.c_str(), NULL);
perror(_restart_prog.c_str());
}