diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2016-05-08 16:47:41 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-05-09 12:29:08 -0700 |
commit | 26604f9f621b7b5710309671168d98722b8f5f33 (patch) | |
tree | 032b4ed553d5ccc836bb4e2643b9b8bdf8e9b653 /credential-cache--daemon.c | |
parent | copy.c: use error_errno() (diff) | |
download | tgif-26604f9f621b7b5710309671168d98722b8f5f33.tar.xz |
credential-cache--daemon.c: use warning_errno()
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'credential-cache--daemon.c')
-rw-r--r-- | credential-cache--daemon.c | 4 |
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; } |