diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-01-25 07:16:18 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-01-25 07:16:18 +0800 |
commit | 4ba09274d6d393568a06c483bf4934ea4707a604 (patch) | |
tree | 8bb9f22fe18024c733e233f963c621c39ed460f4 /camel/providers | |
parent | d656b69c9bd1de52d6991e1694fd4dcf9856951c (diff) | |
download | gsoc2013-evolution-4ba09274d6d393568a06c483bf4934ea4707a604.tar gsoc2013-evolution-4ba09274d6d393568a06c483bf4934ea4707a604.tar.gz gsoc2013-evolution-4ba09274d6d393568a06c483bf4934ea4707a604.tar.bz2 gsoc2013-evolution-4ba09274d6d393568a06c483bf4934ea4707a604.tar.lz gsoc2013-evolution-4ba09274d6d393568a06c483bf4934ea4707a604.tar.xz gsoc2013-evolution-4ba09274d6d393568a06c483bf4934ea4707a604.tar.zst gsoc2013-evolution-4ba09274d6d393568a06c483bf4934ea4707a604.zip |
Clean up some of the Makefiles so we dont' link every library multiple
times, causing big libtool 1.4 pain.
svn path=/trunk/; revision=15461
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/sendmail/camel-sendmail-transport.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/sendmail/camel-sendmail-transport.c b/camel/providers/sendmail/camel-sendmail-transport.c index 7ee5c3bdab..5d5df59a7c 100644 --- a/camel/providers/sendmail/camel-sendmail-transport.c +++ b/camel/providers/sendmail/camel-sendmail-transport.c @@ -131,8 +131,8 @@ sendmail_send_internal (CamelMedium *message, const char **argv, CamelException /* Child process */ nullfd = open ("/dev/null", O_RDWR); dup2 (fd[0], STDIN_FILENO); - dup2 (nullfd, STDOUT_FILENO); - dup2 (nullfd, STDERR_FILENO); + /* dup2 (nullfd, STDOUT_FILENO); + dup2 (nullfd, STDERR_FILENO);*/ close (nullfd); close (fd[1]); |