diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-02-02 07:20:38 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-02-02 07:20:38 +0000 |
commit | 2be1639518a932a1d42989df6b1aae2ab9fc7d0d (patch) | |
tree | e9181f5aeea78b608ba354d7da3e287e2a296326 /fetchmail.c | |
parent | 945a2b9e9135a2c94bcb2d0a033c5d1a0ef6b57f (diff) | |
download | fetchmail-2be1639518a932a1d42989df6b1aae2ab9fc7d0d.tar.gz fetchmail-2be1639518a932a1d42989df6b1aae2ab9fc7d0d.tar.bz2 fetchmail-2be1639518a932a1d42989df6b1aae2ab9fc7d0d.zip |
Dave Bodenstab's fixes.
svn path=/trunk/; revision=855
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 47fcfe72..39f70074 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -632,7 +632,7 @@ static int load_params(int argc, char **argv, int optind) /* if stripcr hasn't been set, default it asccording to MDA */ if (ctl->stripcr == -1) - ctl->stripcr = !ctl->mda; + ctl->stripcr = (ctl->mda != (char *)NULL); /* plug in the semi-standard way of indicating a mail address */ if (ctl->server.envelope == (char *)NULL) |