diff options
author | Christopher Faylor <me@cgf.cx> | 2002-10-20 04:46:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-10-20 04:46:31 +0000 |
commit | 818089d9c811592aa8a680cb036b9b6a9d54c780 (patch) | |
tree | 6d02486dd43aef52efb46abbb1e072501a3f73fb | |
parent | f6db44c954312e38c86f17c3c3392796adc4f450 (diff) | |
download | newlib-818089d9c811592aa8a680cb036b9b6a9d54c780.zip newlib-818089d9c811592aa8a680cb036b9b6a9d54c780.tar.gz newlib-818089d9c811592aa8a680cb036b9b6a9d54c780.tar.bz2 |
missed checkin
-rw-r--r-- | winsup/cygwin/fhandler_socket.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_socket.cc b/winsup/cygwin/fhandler_socket.cc index 5097cb9..c60ba29 100644 --- a/winsup/cygwin/fhandler_socket.cc +++ b/winsup/cygwin/fhandler_socket.cc @@ -903,7 +903,7 @@ fhandler_socket::sendto (const void *ptr, size_t len, int flags, { set_errno (EPIPE); if (! (flags & MSG_NOSIGNAL)) - _raise (SIGPIPE); + raise (SIGPIPE); } return res; |