[gupnp-av] Fix PlaySpeed header generation
- From: Jens Georg <jensgeorg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gupnp-av] Fix PlaySpeed header generation
- Date: Mon, 30 Sep 2013 12:00:12 +0000 (UTC)
commit d7c00547b585b1b07ef238d34e8e8edb57c6198f
Author: Craig Pratt <craig ecaspia com>
Date: Mon Sep 30 13:59:35 2013 +0200
Fix PlaySpeed header generation
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=707495
libgupnp-av/gupnp-protocol-info.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/libgupnp-av/gupnp-protocol-info.c b/libgupnp-av/gupnp-protocol-info.c
index d0d71c0..8888e56 100644
--- a/libgupnp-av/gupnp-protocol-info.c
+++ b/libgupnp-av/gupnp-protocol-info.c
@@ -259,7 +259,7 @@ add_dlna_info (GString *str,
if (speeds != NULL) {
int i;
- g_string_append_printf (str, "DLNA.ORG_PS=;");
+ g_string_append (str, "DLNA.ORG_PS=");
for (i = 0; speeds[i]; i++) {
g_string_append (str, speeds[i]);
@@ -267,6 +267,7 @@ add_dlna_info (GString *str,
if (speeds[i + 1])
g_string_append_c (str, ',');
}
+ g_string_append_c (str, ';');
}
conversion = gupnp_protocol_info_get_dlna_conversion (info);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]