Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--credential-cache--daemon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/credential-cache--daemon.c b/credential-cache--daemon.c
index caef21e4fc..94d18f839c 100644
--- a/credential-cache--daemon.c
+++ b/credential-cache--daemon.c
@@ -170,12 +170,12 @@ static int serve_cache_loop(int fd)
client = accept(fd, NULL, NULL);
if (client < 0) {
- warning("accept failed: %s", strerror(errno));
+ warning_errno("accept failed");
return 1;
}
client2 = dup(client);
if (client2 < 0) {
- warning("dup failed: %s", strerror(errno));
+ warning_errno("dup failed");
close(client);
return 1;
}