Commit 9208bb2c authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Fix issue for OC

parent 65cc98c9
......@@ -1011,10 +1011,10 @@ typedef struct fseid_s {
// 8.2.38 Node ID
enum node_id_type_value_e {
/* Request / Initial message */
NODE_ID_TYPE_UNKNOWN = -1,
NODE_ID_TYPE_IPV4_ADDRESS = 0,
NODE_ID_TYPE_IPV6_ADDRESS = 1,
NODE_ID_TYPE_FQDN = 2,
NODE_ID_TYPE_UNKNOWN = 3
};
struct node_id_s {
......@@ -1050,6 +1050,7 @@ struct node_id_s {
return false;
}
}
return false;
/*
if ((i.node_id_type == this->node_id_type) &&
......
......@@ -830,6 +830,7 @@ int smf_config::load(const string& config_file) {
Logger::smf_app().error("%s : %s", nfex.what(), nfex.getPath());
return RETURNerror;
}
return RETURNok;
}
//------------------------------------------------------------------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment