diff options
-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; } |