1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

curl: ignore SIGPIPE - compilation fix

This commit is contained in:
Yang Tse 2013-01-09 01:30:08 +01:00
parent 5a053ffe80
commit dd73c924ac

View File

@ -87,8 +87,8 @@ int main(int argc, char *argv[])
main_checkfds();
#ifdef HAVE_SIGNAL
signal(SIGPIPE, SIG_IGN);
#ifdef SIGPIPE
(void)signal(SIGPIPE, SIG_IGN);
#endif
res = operate(&config, argc, argv);