summaryrefslogtreecommitdiff
path: root/mailbox/mutil.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2006-04-20 15:52:41 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2006-04-20 15:52:41 +0000
commit793cc9c08087b69bdff8b8adc5c366fca4d61c4a (patch)
treec2c4619fbcc2e1e305d91018e7778f955ef9c6a2 /mailbox/mutil.c
parentb1fb6b25860e5c04894d7f856df619a2d2de937b (diff)
downloadmailutils-793cc9c08087b69bdff8b8adc5c366fca4d61c4a.tar.gz
mailutils-793cc9c08087b69bdff8b8adc5c366fca4d61c4a.tar.bz2
(mu_spawnvp): Change type of the 2nd argument.
Diffstat (limited to 'mailbox/mutil.c')
-rw-r--r--mailbox/mutil.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/mailbox/mutil.c b/mailbox/mutil.c
index 4ed0e8605..23c5e3670 100644
--- a/mailbox/mutil.c
+++ b/mailbox/mutil.c
@@ -655,7 +655,7 @@ mu_tempname (const char *tmpdir)
* to find it.
*/
int
-mu_spawnvp (const char *prog, const char *const av_[], int *stat)
+mu_spawnvp (const char *prog, char * const av[], int *stat)
{
pid_t pid;
int err = 0;
@@ -665,7 +665,6 @@ mu_spawnvp (const char *prog, const char *const av_[], int *stat)
struct sigaction savequit;
sigset_t chldmask;
sigset_t savemask;
- char **av = (char **) av_;
if (!prog || !av)
return EINVAL;

Return to:

Send suggestions and report system problems to the System administrator.