curl: ignore SIGPIPE - compilation fix - follow-up

This commit is contained in:
Yang Tse 2013-01-09 22:47:41 +01:00
parent 308cce8231
commit a7db42e4f0
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ int main(int argc, char *argv[])
main_checkfds();
#ifdef SIGPIPE
#if defined(HAVE_SIGNAL) && defined(SIGPIPE)
(void)signal(SIGPIPE, SIG_IGN);
#endif