Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
GNOME
libdmapsharing
Commits
7f0fbc2a
Commit
7f0fbc2a
authored
Sep 06, 2010
by
W. Michael Petullo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
libdmapsharing/dmap-share.c
libdmapsharing/dmap-share.c
+5
-0
No files found.
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
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