diff options
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c index c585bd03..369bc63f 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -231,8 +231,7 @@ char **argv; char *argp; /* punch nulls into the delimiting whitespace in the args */ - hostp->mda_argcount = 0; - for (argp = hostp->mdabuf, hostp->mda_argcount = 1; *argp != '\0'; hostp->mda_argcount++) + for (argp = hostp->mda, hostp->mda_argcount = 1; *argp != '\0'; hostp->mda_argcount++) { hostp->mda_argv[hostp->mda_argcount] = argp; while (!(*argp == '\0' || isspace(*argp))) |