]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
*-login: Removed dead assignment to make static analyzer happy.
authorTimo Sirainen <tss@iki.fi>
Wed, 19 Aug 2015 08:34:36 +0000 (11:34 +0300)
committerTimo Sirainen <tss@iki.fi>
Wed, 19 Aug 2015 08:34:36 +0000 (11:34 +0300)
src/login-common/main.c

index 0db794b54ae18f1477edefb700fa0b066d444dac..eb4cf6c3aeb332f2ab20d830cd4dd063b2ec9cbc 100644 (file)
@@ -123,8 +123,8 @@ client_connected_finish(const struct master_service_connection *conn)
                                  &conn->remote_ip, NULL, &ssl_set, &other_sets);
 
        if (!ssl_connections && !conn->ssl) {
-               client = client_create(conn->fd, FALSE, pool, conn,
-                                      set, ssl_set, other_sets);
+               (void)client_create(conn->fd, FALSE, pool, conn,
+                                   set, ssl_set, other_sets);
        } else {
                fd_ssl = ssl_proxy_alloc(conn->fd, &conn->remote_ip, pool,
                                         set, ssl_set, &proxy);