projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e8ce062
)
BB_EXECLP should call execlp, not execvp
author
Denis Vlasenko
<vda.linux@googlemail.com>
Sun, 4 Feb 2007 00:09:18 +0000
(
00:09
-0000)
committer
Denis Vlasenko
<vda.linux@googlemail.com>
Sun, 4 Feb 2007 00:09:18 +0000
(
00:09
-0000)
include/libbb.h
patch
|
blob
|
history
diff --git
a/include/libbb.h
b/include/libbb.h
index d7332714fc33c3744d4557f488f8c66225e64b98..44bd6e09d9f3070785fb44f8fc493a5bbff14fcb 100644
(file)
--- a/
include/libbb.h
+++ b/
include/libbb.h
@@
-561,7
+561,7
@@
int exists_execable(const char *filename);
execlp((find_applet_by_name(prog)) ? CONFIG_BUSYBOX_EXEC_PATH : prog, cmd, __VA_ARGS__)
#else
#define BB_EXECVP(prog,cmd) execvp(prog,cmd)
-#define BB_EXECLP(prog,cmd,...) exec
v
p(prog,cmd, __VA_ARGS__)
+#define BB_EXECLP(prog,cmd,...) exec
l
p(prog,cmd, __VA_ARGS__)
#endif
USE_DESKTOP(long long) int uncompress(int fd_in, int fd_out);