Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-NRF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-NRF
Commits
e77724a1
Commit
e77724a1
authored
Sep 23, 2022
by
Tien Thinh NGUYEN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo
parent
31b184ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/nrf_app/nrf_profile.cpp
src/nrf_app/nrf_profile.cpp
+3
-3
No files found.
src/nrf_app/nrf_profile.cpp
View file @
e77724a1
...
...
@@ -85,9 +85,9 @@ nf_type_t nrf_profile::get_nf_type() const {
//------------------------------------------------------------------------------
bool
nrf_profile
::
set_nf_status
(
const
std
::
string
&
status
)
{
Logger
::
nrf_app
().
debug
(
"Set NF status to %s"
,
status
.
c_str
());
if
(
!
(
boost
::
iequals
(
nf_
status
,
"REGISTERED"
)
or
boost
::
iequals
(
nf_
status
,
"UNDISCOVERABLE"
)
or
boost
::
iequals
(
nf_
status
,
"DEREGISTERED"
)))
{
if
(
!
(
boost
::
iequals
(
status
,
"REGISTERED"
)
or
boost
::
iequals
(
status
,
"UNDISCOVERABLE"
)
or
boost
::
iequals
(
status
,
"DEREGISTERED"
)))
{
return
false
;
}
std
::
unique_lock
lock
(
nf_profile_mutex
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment