From 3a83fe7e6cd2fa65a6f54a91bb28fa96cff24332 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 16 Jan 2003 23:05:58 +0000 Subject: [PATCH] exec a requested new process via /bin/sh to allow for command line args, the same way otk::bexec does it. --- src/openbox.cc | 6 ++---- 1 file 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(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()); } -- 2.44.0