diff options
author | David Schleef <david.schleef@rd.io> | 2013-11-07 22:27:53 -0800 |
---|---|---|
committer | David Schleef <david.schleef@rd.io> | 2013-11-07 22:27:53 -0800 |
commit | ba407b7ef640702ea9ea45de642551a6e550dcae (patch) | |
tree | 9ed0ddd74b988458e4a5084ceb04573bc8f8bb3c | |
parent | 806dea9c42ec58848539c329784e68c8143dacf1 (diff) |
server: Fix <,> in html
-rw-r--r-- | gst-streaming-server/gss-server.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gst-streaming-server/gss-server.c b/gst-streaming-server/gss-server.c index ea6574e..0d1f417 100644 --- a/gst-streaming-server/gss-server.c +++ b/gst-streaming-server/gss-server.c @@ -1262,9 +1262,11 @@ gss_server_resource_about (GssTransaction * t) GSS_P ("<h3>GStreamer Streaming Server</h3>\n"); GSS_P ("<pre>\n"); - GSS_P ("Copyright (C) 2009-2012 Entropy Wave Inc <info@entropywave.com>\n"); - GSS_P ("Copyright (C) 2009-2012 David Schleef <ds@schleef.org>\n"); - GSS_P ("Copyright (C) 2012 Jan Schmidt <thaytan@noraisin.net>\n"); + GSS_P + ("Copyright (C) 2009-2012 Entropy Wave Inc <info@entropywave.com>\n"); + GSS_P ("Copyright (C) 2009-2012 David Schleef <ds@schleef.org>\n"); + GSS_P ("Copyright (C) 2012 Jan Schmidt <thaytan@noraisin.net>\n"); + GSS_P ("Copyright (C) 2013 Rdio Inc <ingestions@rdio.com>\n"); GSS_P ("\n"); GSS_P ("This library is free software; you can redistribute it and/or\n"); GSS_P ("modify it under the terms of the GNU Library General Public\n"); @@ -1347,7 +1349,7 @@ gss_server_resource_about (GssTransaction * t) GSS_P ("Copyright (C) 1997, 1998 Tim Janik\n"); GSS_P ("Copyright (C) 2007, 2008, 2009 OpenedHand Ltd.\n"); GSS_P ("Copyright (C) 2009, 2010, 2011 Intel Corp.\n"); - GSS_P ("Copyright (C) 2010 Luca Bruno <lethalman88@gmail.com>\n"); + GSS_P ("Copyright (C) 2010 Luca Bruno <lethalman88@gmail.com>\n"); GSS_P ("\n"); GSS_P ("This library is free software; you can redistribute it and/or\n"); GSS_P ("modify it under the terms of the GNU Lesser General Public\n"); |