diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sa-junk-plugin/em-junk-filter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/sa-junk-plugin/em-junk-filter.c b/plugins/sa-junk-plugin/em-junk-filter.c index 0cf5ff6caa..534f6673cd 100644 --- a/plugins/sa-junk-plugin/em-junk-filter.c +++ b/plugins/sa-junk-plugin/em-junk-filter.c @@ -143,10 +143,10 @@ pipe_to_sa_full (CamelMimeMessage *msg, const char *in, char **argv, int rv_err, } if (output_buffer && pipe (out_fds) == -1) { - close (fds [0]); - close (fds [1]); errnosav = errno; d(printf ("failed to create a pipe (for use with spamassassin: %s\n", strerror (errno))); + close (fds [0]); + close (fds [1]); errno = errnosav; return rv_err; } |