Hi Jeff, When the 'jk/http-auth-keyring' branch was in next (and later back in pu), I noticed that the t0300-credentials.sh test failing on cygwin. I had a quick look, and found that unix_stream_listen() was failing to bind() to a stale unix socket. The code looked OK to me, and should have handled this just fine, but didn't ... On a hunch, I found that the following "belt-n-braces" approach fixed the the test for me: -- >8 -- diff --git a/unix-socket.c b/unix-socket.c index cf9890f..d974e01 100644 --- a/unix-socket.c +++ b/unix-socket.c @@ -42,7 +42,9 @@ int unix_stream_listen(const char *path) fd = unix_stream_socket(); if (bind(fd, (struct sockaddr *)&sa, sizeof(sa)) < 0) { + close(fd); unlink(path); + fd = unix_stream_socket(); if (bind(fd, (struct sockaddr *)&sa, sizeof(sa)) < 0) { close(fd); return -1; -- 8< -- However, I don't particularly like the above solution, so I decided to take a look at credential-cache--daemon to see why it was leaving a stale socket in the first place. The following patches are the result: [PATCH 1/2] credential-cache--daemon.c: Don't leave stale socket on --exit [PATCH 2/2] credential-cache--daemon.c: unlink() a potentially stale unix socket Note that, in serve_one_client(), the "--exit" action results in the server exit(0)-ing immediately without close()-ing and unlink()-ing the socket. So, patch #1 changes serve_one_client() to return a value to serve_cache_loop() which indicates whether it's caller (serve_cache()) should exit from the main server loop. This results in the socket being cleaned up correctly in the "--exit" case. Note that this does not eliminate all early-exit code paths (for example, we note an die_errno() call), so it is still possible for the server to exit without having cleaned up the socket, so patch #2 adds on unlink() call to the beginning of serve_cache(). Note that each of these patches, separately and together, fix the test on cygwin. Assuming that a modified http-auth-keyring series will make a return to pu sometime, could you please squash these patches into (the patch corresponding to) commit 2d6874d (credentials: add "cache" helper, 18-07-2011). Thanks! Also, note that this series breaks the build on MinGW. The patch to fix the build is rather simple, but the result doesn't work, of course, because winsock does not know about AF_UNIX (or AF_LOCAL). I started to code an win32 emulation of unix sockets, but stopped working on it when this branch dropped from next. If you intend to re-submit this work, then I can pick this up again. HTH. ATB, Ramsay Jones -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html