Make cfg_get_node_addrs return CS_OK rather than 0 when it succeeds.

git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@1753 fd59a12c-fef9-0310-b244-a6a79926bd2f
This commit is contained in:
Christine Caulfield 2009-01-30 11:56:34 +00:00
parent 93fc127288
commit 6bc8ceda24

View File

@ -976,7 +976,7 @@ static void message_handler_req_lib_cfg_get_node_addrs (void *conn, void *msg)
char buf[PIPE_BUF];
char **status;
unsigned int num_interfaces = 0;
int ret = 0;
int ret = CS_OK;
int i;
struct req_lib_cfg_get_node_addrs *req_lib_cfg_get_node_addrs = (struct req_lib_cfg_get_node_addrs *)msg;
struct res_lib_cfg_get_node_addrs *res_lib_cfg_get_node_addrs = (struct res_lib_cfg_get_node_addrs *)buf;