diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-06 01:20:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-06 01:20:12 +0000 |
commit | 1d76f439da81d3a05f0e0fdde3f81ec56fb20836 (patch) | |
tree | f3e2e2185d092f87843fe4bbc9d1098185a5bdbd /loginutils/adduser.c | |
parent | cc24419e98853aede7c652edb3c1c79a9865bdda (diff) | |
download | busybox-w32-1d76f439da81d3a05f0e0fdde3f81ec56fb20836.tar.gz busybox-w32-1d76f439da81d3a05f0e0fdde3f81ec56fb20836.tar.bz2 busybox-w32-1d76f439da81d3a05f0e0fdde3f81ec56fb20836.zip |
EXEC_PREFER_APPLETS support by Gabriel L. Somlo <somlo@cmu.edu>
Diffstat (limited to 'loginutils/adduser.c')
-rw-r--r-- | loginutils/adduser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loginutils/adduser.c b/loginutils/adduser.c index 8193aea82..b6d0c62ea 100644 --- a/loginutils/adduser.c +++ b/loginutils/adduser.c | |||
@@ -80,7 +80,7 @@ static void passwd_wrapper(const char *login) ATTRIBUTE_NORETURN; | |||
80 | static void passwd_wrapper(const char *login) | 80 | static void passwd_wrapper(const char *login) |
81 | { | 81 | { |
82 | static const char prog[] = "passwd"; | 82 | static const char prog[] = "passwd"; |
83 | execlp(prog, prog, login, NULL); | 83 | BB_EXECLP(prog, prog, login, NULL); |
84 | bb_error_msg_and_die("failed to execute '%s', you must set the password for '%s' manually", prog, login); | 84 | bb_error_msg_and_die("failed to execute '%s', you must set the password for '%s' manually", prog, login); |
85 | } | 85 | } |
86 | 86 | ||