From 612e67b21d1c9a6cc5db0e2903ddaeb5f2fbe2a0 Mon Sep 17 00:00:00 2001 From: markus schnalke Date: Thu, 22 Mar 2012 12:08:47 +0100 Subject: [PATCH] Remove the rcvstoreproc/rcvpackproc vars. --- config/config.c | 12 ------------ h/mh.h | 2 -- uip/slocal.c | 2 +- 3 files changed, 1 insertion(+), 15 deletions(-) diff --git a/config/config.c b/config/config.c index b8a7c80..fa0b0fc 100644 --- a/config/config.c +++ b/config/config.c @@ -152,18 +152,6 @@ char *defaulteditor = "vi"; char *postproc = NMHBINDIR"/spost"; /* -** This is program is called by slocal to handle -** the action `folder' or `+'. -*/ -char *rcvstoreproc = NMHBINDIR"/rcvstore"; - -/* -** This is program is called by slocal to handle -** the action `file', `mbox' or `>'. -*/ -char *rcvpackproc = NMHBINDIR"/rcvpack"; - -/* ** This program is called to remove a message by rmm or refile -nolink. ** It's usually empty, which means to rename the file to a backup name. */ diff --git a/h/mh.h b/h/mh.h index ef4ca62..dd049d3 100644 --- a/h/mh.h +++ b/h/mh.h @@ -321,8 +321,6 @@ extern char *postproc; extern char *profile; extern char *psequence; extern char *rcvdistcomps; -extern char *rcvpackproc; -extern char *rcvstoreproc; extern char *replcomps; extern char *replgroupcomps; extern char *rmmproc; diff --git a/uip/slocal.c b/uip/slocal.c index 7f27226..f03d487 100644 --- a/uip/slocal.c +++ b/uip/slocal.c @@ -1096,7 +1096,7 @@ usr_folder(int fd, char *string) vec[1] = folder; vec[2] = NULL; - return usr_pipe(fd, "rcvstore", rcvstoreproc, vec, 1); + return usr_pipe(fd, "rcvstore", "rcvstore", vec, 1); } /* -- 1.7.10.4