summaryrefslogtreecommitdiff
path: root/source3/lib/util.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-09-02 05:00:47 +0000
committerAndrew Tridgell <tridge@samba.org>1998-09-02 05:00:47 +0000
commit148691b1c5e8e93b02762757345a54c82e6fdadc (patch)
tree08f4f6c366bc0e5f56e924bc44db1c2c72aa3fc0 /source3/lib/util.c
parent054a7bcd3a01d6a4fa48be816f8218541d0cbd52 (diff)
downloadsamba-148691b1c5e8e93b02762757345a54c82e6fdadc.tar.gz
samba-148691b1c5e8e93b02762757345a54c82e6fdadc.tar.bz2
samba-148691b1c5e8e93b02762757345a54c82e6fdadc.zip
we are never interested in SIGPIPE so just ignore (block) it
always. Don't even install a handler. (This used to be commit 72c383f4b7bcce5374632dc972df16ab0e2542b9)
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r--source3/lib/util.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index 4187787489..8b10939a97 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -3391,15 +3391,6 @@ void *Realloc(void *p,int size)
/****************************************************************************
- Signal handler for SIGPIPE (write on a disconnected socket)
-****************************************************************************/
-void Abort(void )
-{
- DEBUG(0,("Probably got SIGPIPE\nExiting\n"));
- exit(2);
-}
-
-/****************************************************************************
get my own name and IP
****************************************************************************/
BOOL get_myname(char *my_name,struct in_addr *ip)