Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
libdmapsharing
Commits
7f0fbc2a
Commit
7f0fbc2a
authored
Sep 06, 2010
by
W. Michael Petullo
Browse files
Debug message when request asks for metadata type that is not known
Signed-off-by:
W. Michael Petullo
<
mike@flyn.org
>
parent
2ae05d95
Changes
1
Hide whitespace changes
Inline
Side-by-side
libdmapsharing/dmap-share.c
View file @
7f0fbc2a
...
...
@@ -1083,12 +1083,17 @@ _dmap_share_parse_meta_str (const char *attrs, struct DMAPMetaDataMap *mdm)
for
(
i
=
0
;
attrsv
[
i
];
i
++
)
{
guint
j
;
gboolean
found
=
FALSE
;
for
(
j
=
0
;
mdm
[
j
].
tag
;
j
++
)
{
if
(
strcmp
(
mdm
[
j
].
tag
,
attrsv
[
i
])
==
0
)
{
bits
|=
(((
bitwise
)
1
)
<<
mdm
[
j
].
md
);
found
=
TRUE
;
}
}
if
(
found
==
FALSE
)
g_debug
(
"Unknown meta request: %s"
,
attrsv
[
i
]);
}
g_strfreev
(
attrsv
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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