diff options
author | phk <phk@FreeBSD.org> | 1995-02-20 19:07:32 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-02-20 19:07:32 +0000 |
commit | 21582849ddc360259c6fb4063ece465e45dcc3fb (patch) | |
tree | 31cc24050ca6506c52082c6fbf313c68cde11c1b /usr.sbin/ctm | |
parent | 0171ba082e45abe54b7fad6aa60d2d3d0fd62733 (diff) | |
download | FreeBSD-src-21582849ddc360259c6fb4063ece465e45dcc3fb.zip FreeBSD-src-21582849ddc360259c6fb4063ece465e45dcc3fb.tar.gz |
Use absolute path for the "ctm" program.
Diffstat (limited to 'usr.sbin/ctm')
-rw-r--r-- | usr.sbin/ctm/ctm_rmail/ctm_rmail.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ctm/ctm_rmail/ctm_rmail.c b/usr.sbin/ctm/ctm_rmail/ctm_rmail.c index 0f45d6b..04eef38 100644 --- a/usr.sbin/ctm/ctm_rmail/ctm_rmail.c +++ b/usr.sbin/ctm/ctm_rmail/ctm_rmail.c @@ -153,7 +153,8 @@ apply_complete() if (stat(fname, &sb) < 0) return; - sprintf(buf, "(cd %s && ctm %s%s) 2>&1", base_dir, here, fname); + sprintf(buf, "(cd %s && /usr/sbin/ctm %s%s) 2>&1", + base_dir, here, fname); if ((ctm = popen(buf, "r")) == NULL) { err("ctm failed to apply %s", delta); |