Commit e77724a1 authored by Tien Thinh NGUYEN's avatar Tien Thinh NGUYEN

Fix typo

parent 31b184ee
...@@ -85,9 +85,9 @@ nf_type_t nrf_profile::get_nf_type() const { ...@@ -85,9 +85,9 @@ nf_type_t nrf_profile::get_nf_type() const {
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
bool nrf_profile::set_nf_status(const std::string& status) { bool nrf_profile::set_nf_status(const std::string& status) {
Logger::nrf_app().debug("Set NF status to %s", status.c_str()); Logger::nrf_app().debug("Set NF status to %s", status.c_str());
if (!(boost::iequals(nf_status, "REGISTERED") or if (!(boost::iequals(status, "REGISTERED") or
boost::iequals(nf_status, "UNDISCOVERABLE") or boost::iequals(status, "UNDISCOVERABLE") or
boost::iequals(nf_status, "DEREGISTERED"))) { boost::iequals(status, "DEREGISTERED"))) {
return false; return false;
} }
std::unique_lock lock(nf_profile_mutex); std::unique_lock lock(nf_profile_mutex);
......
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