From b918f91cecd70b83766a27a8cf40097b712668f9 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Fri, 26 Nov 2010 17:27:44 +0000 Subject: [PATCH] auth: Minor error message fix. --- src/auth/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/main.c b/src/auth/main.c index 09b1cb82b1..2310846341 100644 --- a/src/auth/main.c +++ b/src/auth/main.c @@ -212,7 +212,7 @@ static void client_connected(struct master_service_connection *conn) /* figure out if this is a server or network socket by checking the socket path name. */ if (net_getunixname(conn->listen_fd, &path) < 0) - i_fatal("getsockname(%d) failed: %m", conn->listen_fd); + i_fatal("getunixname(%d) failed: %m", conn->listen_fd); name = strrchr(path, '/'); if (name == NULL) -- 2.47.3