Skip to content

Commit

Permalink
credential-cache: minor Windows fix
Browse files Browse the repository at this point in the history
Signed-off-by: M Hickford <[email protected]>
  • Loading branch information
hickford committed Dec 22, 2024
1 parent f1241af commit 32a7647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/credential-cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ static int connection_closed(int error)

static int connection_fatally_broken(int error)
{
return (error != ENOENT) && (error != ENETDOWN);
return (error != ENOENT) && (error != ENETDOWN) && (error != ENOTSOCK);
}

#else
Expand Down

0 comments on commit 32a7647

Please sign in to comment.