summaryrefslogtreecommitdiff
path: root/mh/mh_whatnow.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2003-02-21 12:59:18 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2003-02-21 12:59:18 +0000
commitbbd0617f292d13abb6e33426d91d8989d3688740 (patch)
tree9ded2865d2fcfa82f7b819120145618ad6b42184 /mh/mh_whatnow.c
parentb3b6cb044fd7ae0536fbdf38d15af435bad5ce43 (diff)
downloadmailutils-bbd0617f292d13abb6e33426d91d8989d3688740.tar.gz
mailutils-bbd0617f292d13abb6e33426d91d8989d3688740.tar.bz2
Execute default programs using full path specification.
Diffstat (limited to 'mh/mh_whatnow.c')
-rw-r--r--mh/mh_whatnow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mh/mh_whatnow.c b/mh/mh_whatnow.c
index f425644eb..1de53de22 100644
--- a/mh/mh_whatnow.c
+++ b/mh/mh_whatnow.c
@@ -330,7 +330,7 @@ static int
push (struct mh_whatnow_env *wh, int argc, char **argv, int *status)
{
int rc;
- invoke ("sendproc", "send", argc, argv, "-push", wh->file, &rc);
+ invoke ("sendproc", MHBINDIR "/send", argc, argv, "-push", wh->file, &rc);
return 0;
}
@@ -359,7 +359,7 @@ static int
refile (struct mh_whatnow_env *wh, int argc, char **argv, int *status)
{
int rc;
- invoke ("fileproc", "refile", argc, argv, "-file", wh->file, &rc);
+ invoke ("fileproc", MHBINDIR "/refile", argc, argv, "-file", wh->file, &rc);
return 0;
}
@@ -368,7 +368,7 @@ static int
send (struct mh_whatnow_env *wh, int argc, char **argv, int *status)
{
int rc;
- invoke ("sendproc", "send", argc, argv, wh->file, NULL, &rc);
+ invoke ("sendproc", MHBINDIR "/send", argc, argv, wh->file, NULL, &rc);
return 0;
}

Return to:

Send suggestions and report system problems to the System administrator.