Remove spurious NULL checks
[openafs.git] / src / libafscp / afscp_server.c
index 49792b4..726d2e5 100644 (file)
@@ -473,7 +473,7 @@ afscp_ServerByIndex(int i)
 struct rx_connection *
 afscp_ServerConnection(const struct afscp_server *srv, int i)
 {
-    if (srv == NULL || srv->conns == NULL)
+    if (srv == NULL)
        return NULL;
     if (i >= srv->naddrs || i < 0)
        return NULL;