diff options
Diffstat (limited to 'src/FbCommands.cc')
-rw-r--r-- | src/FbCommands.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FbCommands.cc b/src/FbCommands.cc index ba409d3..8ca3cbb 100644 --- a/src/FbCommands.cc +++ b/src/FbCommands.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: FbCommands.cc,v 1.7 2003/06/11 04:21:16 rathnor Exp $ | 22 | // $Id: FbCommands.cc,v 1.8 2003/06/11 10:50:58 rathnor Exp $ |
23 | 23 | ||
24 | #include "FbCommands.hh" | 24 | #include "FbCommands.hh" |
25 | #include "fluxbox.hh" | 25 | #include "fluxbox.hh" |
@@ -49,11 +49,11 @@ void ExecuteCmd::execute() { | |||
49 | displaystring += intbuff; | 49 | displaystring += intbuff; |
50 | setsid(); | 50 | setsid(); |
51 | putenv(const_cast<char *>(displaystring.c_str())); | 51 | putenv(const_cast<char *>(displaystring.c_str())); |
52 | execl("/bin/sh", "/bin/sh", "-c", m_cmd.c_str(), (void *) NULL); | 52 | execl("/bin/sh", "/bin/sh", "-c", m_cmd.c_str(), 0); |
53 | exit(0); | 53 | exit(0); |
54 | } | 54 | } |
55 | #else // __EMX__ | 55 | #else // __EMX__ |
56 | spawnlp(P_NOWAIT, "cmd.exe", "cmd.exe", "/c", item->exec().c_str(), (void *) NULL); | 56 | spawnlp(P_NOWAIT, "cmd.exe", "cmd.exe", "/c", item->exec().c_str(), 0); |
57 | #endif // !__EMX__ | 57 | #endif // !__EMX__ |
58 | 58 | ||
59 | } | 59 | } |