[xiph-commits] r18661 - icecast/branches/ph3/icecast/src
ph3-der-loewe at svn.xiph.org
ph3-der-loewe at svn.xiph.org
Fri Oct 12 16:50:24 PDT 2012
Author: ph3-der-loewe
Date: 2012-10-12 16:50:24 -0700 (Fri, 12 Oct 2012)
New Revision: 18661
Modified:
icecast/branches/ph3/icecast/src/plugins.c
icecast/branches/ph3/icecast/src/roarapi.h
Log:
corrected host name
Modified: icecast/branches/ph3/icecast/src/plugins.c
===================================================================
--- icecast/branches/ph3/icecast/src/plugins.c 2012-10-12 21:55:43 UTC (rev 18660)
+++ icecast/branches/ph3/icecast/src/plugins.c 2012-10-12 23:50:24 UTC (rev 18661)
@@ -38,7 +38,7 @@
{
#ifdef HAVE_ROARAUDIO
roarapi_lock();
- container = roar_plugincontainer_new_simple(ICECAST_HOST_VERSION_STRING, PACKAGE_VERSION);
+ container = roar_plugincontainer_new_simple(ICECAST_HOST_STRING, PACKAGE_VERSION);
roar_plugincontainer_set_autoappsched(container, 1);
roarapi_unlock();
plugin_thread = thread_create("Plugin Thread", plugin_runner, NULL, 0);
@@ -75,7 +75,7 @@
if (plugin->args)
{
- para = roar_dl_para_new(plugin->args, NULL, ICECAST_HOST_VERSION_STRING, PACKAGE_VERSION);
+ para = roar_dl_para_new(plugin->args, NULL, ICECAST_HOST_STRING, PACKAGE_VERSION);
if (!para)
return;
}
Modified: icecast/branches/ph3/icecast/src/roarapi.h
===================================================================
--- icecast/branches/ph3/icecast/src/roarapi.h 2012-10-12 21:55:43 UTC (rev 18660)
+++ icecast/branches/ph3/icecast/src/roarapi.h 2012-10-12 23:50:24 UTC (rev 18661)
@@ -16,7 +16,7 @@
#include <roaraudio.h>
-#define ICECAST_HOST_VERSION_STRING "Icecast/" PACKAGE_VERSION " <Xiph Foundation>"
+#define ICECAST_HOST_STRING "Icecast <Xiph Foundation>"
void roarapi_initialize(void);
void roarapi_shutdown(void);
More information about the commits
mailing list