From: Timo Sirainen Date: Fri, 26 Nov 2010 17:27:44 +0000 (+0000) Subject: auth: Minor error message fix. X-Git-Tag: 2.0.8~39 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b918f91cecd70b83766a27a8cf40097b712668f9;p=thirdparty%2Fdovecot%2Fcore.git auth: Minor error message fix. --- 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)