]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: Minor error message fix.
authorTimo Sirainen <tss@iki.fi>
Fri, 26 Nov 2010 17:27:44 +0000 (17:27 +0000)
committerTimo Sirainen <tss@iki.fi>
Fri, 26 Nov 2010 17:27:44 +0000 (17:27 +0000)
src/auth/main.c

index 09b1cb82b15f26a31995a7e575c75e9e96983d55..2310846341294ea395ff68668e3311812f025662 100644 (file)
@@ -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)