X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=credential-cache.c;h=b15a9a74494c746d6f1e70b7658769c343c66576;hb=8ef7933880e6134f51d7bb5d7566b31ca93ee8c7;hp=dc98372e59d1baf2a9714ecde9ffc96589b9cbac;hpb=ea4ef304870d2517ec177f92b000c744bd44cc0c;p=git.git diff --git a/credential-cache.c b/credential-cache.c index dc98372e5..b15a9a744 100644 --- a/credential-cache.c +++ b/credential-cache.c @@ -71,11 +71,10 @@ static void do_cache(const char *socket, const char *action, int timeout, die_errno("unable to relay credential"); } - if (!send_request(socket, &buf)) - return; - if (flags & FLAG_SPAWN) { + if (send_request(socket, &buf) < 0 && (flags & FLAG_SPAWN)) { spawn_daemon(socket); - send_request(socket, &buf); + if (send_request(socket, &buf) < 0) + die_errno("unable to connect to cache daemon"); } strbuf_release(&buf); }