diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-26 19:03:22 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-03-26 19:03:22 +1100 |
commit | 525a4fb2c423dbbeeb1e6da3254f334044b7bd7f (patch) | |
tree | 0458a5c657084da4a963c789993f1f2e5987bdf7 /lib/util | |
parent | fae84f98e37e99e41b23739305e7331b3a34ae48 (diff) | |
download | samba-525a4fb2c423dbbeeb1e6da3254f334044b7bd7f.tar.gz samba-525a4fb2c423dbbeeb1e6da3254f334044b7bd7f.tar.bz2 samba-525a4fb2c423dbbeeb1e6da3254f334044b7bd7f.zip |
util: on FreeBSD true is in /usr/bin. Use execvp to find it
Diffstat (limited to 'lib/util')
-rw-r--r-- | lib/util/util_runcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/util_runcmd.c b/lib/util/util_runcmd.c index ef897d469f..54643d3292 100644 --- a/lib/util/util_runcmd.c +++ b/lib/util/util_runcmd.c @@ -183,7 +183,7 @@ struct tevent_req *samba_runcmd_send(TALLOC_CTX *mem_ctx, } va_end(ap); - ret = execv(state->arg0, argv); + ret = execvp(state->arg0, argv); fprintf(stderr, "Failed to exec child - %s\n", strerror(errno)); _exit(255); return NULL; |