Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in
Toggle navigation
eos
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
JIRA
JIRA
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dss
eos
Commits
6b26e3ef
Commit
6b26e3ef
authored
Jul 03, 2018
by
Elvin Sindrilaru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MQ: Fix wrong condition when doing filtering
parent
8bf8e6fd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
XrdMqSharedObject.cc
mq/XrdMqSharedObject.cc
+1
-1
No files found.
mq/XrdMqSharedObject.cc
View file @
6b26e3ef
...
...
@@ -344,7 +344,7 @@ XrdMqSharedHash::SerializeWithFilter(const char* filter_prefix)
key
=
it
->
first
.
c_str
();
if
(((
filter_prefix
==
nullptr
)
||
(
strlen
(
filter_prefix
)
==
0
))
||
(
key
.
find
(
filter_prefix
)
=
=
0
))
{
(
key
.
find
(
filter_prefix
)
!
=
0
))
{
oss
<<
key
<<
"="
<<
it
->
second
.
GetValue
()
<<
" "
;
}
}
...
...
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