From: Ira Weiny <ira.we...@intel.com>

hosts_ctl declaration is:
int hosts_ctl(daemon, client_name, client_addr, client_user);
char *daemon;
char *client_name;
char *client_addr;
char *client_user;

This should have been part of previous commit 
664494a8157684f2f277fb457556a7c27feae0af 
"Fix issues causing const warnings for strings"

Signed-off-by: Ira Weiny <ira.we...@intel.com>
Signed-off-by: Hal Rosenstock <h...@mellanox.com>
---
diff --git a/opensm/osm_console_io.c b/opensm/osm_console_io.c
index 167562c..18bd5ef 100644
--- a/opensm/osm_console_io.c
+++ b/opensm/osm_console_io.c
@@ -164,8 +164,8 @@ int is_authorized(osm_console_t * p_oct)
 {
        /* allowed to use the console? */
        p_oct->authorized = !is_remote(p_oct->client_type) ||
-           hosts_ctl(OSM_DAEMON_NAME, p_oct->client_hn, p_oct->client_ip,
-                     "STRING_UNKNOWN");
+           hosts_ctl((char *)OSM_DAEMON_NAME, p_oct->client_hn, 
p_oct->client_ip,
+                     (char *)"STRING_UNKNOWN");
        return p_oct->authorized;
 }
 #endif
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to