[SCM] Socket Wrapper Repository - branch master updated

Andreas Schneider asn at samba.org
Mon Feb 23 07:16:32 MST 2015


The branch, master has been updated
       via  4c44ee6 swrap: If we remove the socket_info also unlink the unix socket
      from  a12559d torture: Increase time to wait for pid file.

https://git.samba.org/?p=socket_wrapper.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 4c44ee6bdba65d2857d83e80ffc7b6a1dd478f45
Author: Andreas Schneider <asn at cryptomilk.org>
Date:   Tue Feb 3 17:07:18 2015 +0100

    swrap: If we remove the socket_info also unlink the unix socket
    
    Signed-off-by: Andreas Schneider <asn at cryptomilk.org>
    Reviewed-by: Stefan Metzmacher <metze at samba.org>

-----------------------------------------------------------------------

Summary of changes:
 src/socket_wrapper.c | 3 +++
 1 file changed, 3 insertions(+)


Changeset truncated at 500 lines:

diff --git a/src/socket_wrapper.c b/src/socket_wrapper.c
index eb1d67f..1188c4e 100644
--- a/src/socket_wrapper.c
+++ b/src/socket_wrapper.c
@@ -1418,6 +1418,9 @@ static void swrap_remove_stale(int fd)
 
 		if (si->fds == NULL) {
 			SWRAP_DLIST_REMOVE(sockets, si);
+			if (si->un_addr.sun_path[0] != '\0') {
+				unlink(si->un_addr.sun_path);
+			}
 			free(si);
 		}
 	}


-- 
Socket Wrapper Repository


More information about the samba-cvs mailing list