aboutsummaryrefslogtreecommitdiff
path: root/src/FbCommands.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-06-11 10:50:59 (GMT)
committerrathnor <rathnor>2003-06-11 10:50:59 (GMT)
commit6c0db93dda764e1c854390b07875af8550146ced (patch)
treeecd62e4b57c4ced976f9f4185ed6c72393b5e61d /src/FbCommands.cc
parentda032379b266eea96cf3080479a4bda90bf03d39 (diff)
downloadfluxbox_paul-6c0db93dda764e1c854390b07875af8550146ced.zip
fluxbox_paul-6c0db93dda764e1c854390b07875af8550146ced.tar.bz2
revert NULL thing
Diffstat (limited to 'src/FbCommands.cc')
-rw-r--r--src/FbCommands.cc6
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}