From 45c2b5e4b29145341286b3892d56a478125228aa Mon Sep 17 00:00:00 2001 From: Ron Pedde Date: Sun, 23 Nov 2003 18:13:15 +0000 Subject: [PATCH] Exit rather than returning... shouldn't make a difference, but does. ? --- src/rend-posix.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/rend-posix.c b/src/rend-posix.c index b44be808..48018ac1 100644 --- a/src/rend-posix.c +++ b/src/rend-posix.c @@ -73,6 +73,9 @@ Change History (most recent first): $Log$ + Revision 1.5 2003/11/23 18:13:15 ron + Exit rather than returning... shouldn't make a difference, but does. ? + Revision 1.4 2003/11/20 21:58:22 ron More diag logging, move WS_PRIVATE into the WS_CONNINFO @@ -595,6 +598,6 @@ int rend_init(pid_t *pid,char *name, int port) { DPRINTF(ERR_DEBUG, "Finished with status %ld, result %d\n", status, result); - return result; + exit(result); }