diff options
author | Rob Landley <rob@landley.net> | 2020-10-22 20:03:29 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-10-22 20:03:29 -0500 |
commit | efcc4a1f6aa8207a5d89c0900f28c216e5d93cb0 (patch) | |
tree | 9d865904238b756862d0a0f02eebafaba54cc9da /lib | |
parent | 660e6a384d8c7b32a8486a0aeb31f75939a99b75 (diff) | |
download | toybox-efcc4a1f6aa8207a5d89c0900f28c216e5d93cb0.tar.gz |
Fix thinko.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/xwrap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xwrap.c b/lib/xwrap.c index 85fa2405..e75fa811 100644 --- a/lib/xwrap.c +++ b/lib/xwrap.c @@ -190,7 +190,7 @@ void xvdaemon(void) // vfork and exec /proc/self/exe if (toys.stacktop) { - xpopen(0, 0, 0); + xpopen_both(0, 0); _exit(0); } |