diff options
author | Jules Colding <jcolding@src.gnome.org> | 2007-05-12 18:37:45 +0800 |
---|---|---|
committer | Jules Colding <jcolding@src.gnome.org> | 2007-05-12 18:37:45 +0800 |
commit | 82f23f8570582e5d2ad1d264dd58b97fa26b4959 (patch) | |
tree | b7e307917ca767ce9862496697bc6fbed51de416 /mail | |
parent | 1dd540e02b505af0fa2662c090c92aa8ca8e37a6 (diff) | |
download | gsoc2013-evolution-82f23f8570582e5d2ad1d264dd58b97fa26b4959.tar.gz gsoc2013-evolution-82f23f8570582e5d2ad1d264dd58b97fa26b4959.tar.zst gsoc2013-evolution-82f23f8570582e5d2ad1d264dd58b97fa26b4959.zip |
Fix errno reset issue
svn path=/trunk/; revision=33516
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mail-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-config.c b/mail/mail-config.c index a79b247196..d304a5d7f6 100644 --- a/mail/mail-config.c +++ b/mail/mail-config.c @@ -1101,9 +1101,9 @@ mail_config_signature_run_script (const char *script) g_warning ("Could not execute %s: %s\n", script, g_strerror (errno)); _exit (255); } else if (pid < 0) { + g_warning ("Failed to create create child process '%s': %s", script, g_strerror (errno)); close (in_fds [0]); close (in_fds [1]); - g_warning ("Failed to create create child process '%s': %s", script, g_strerror (errno)); return NULL; } else { CamelStreamFilter *filtered_stream; |