mirror of
https://github.com/curl/curl.git
synced 2026-04-22 15:42:11 +03:00
curl: ignore SIGPIPE - compilation fix
This commit is contained in:
parent
5a053ffe80
commit
dd73c924ac
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue