From 4ebc6cf86ed9e0f5ddc7bc20ef1e5f5e98a16d43 Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Sun, 22 Feb 2009 16:08:43 +0000 Subject: Remove references to trademarked terms. According to http://www.apple.com/legal/trademark/appletmlist.html we could run into problems for using these terms without also displaying a corresponding disclaimer/attribution notice. This is difficult in the context of a headless server, so simply don't use such terms. In GUI apps which can enable this functionality we should use the relevant terminology, and display the appropriate attribution notices. --- src/modules/module-raop-discover.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/modules/module-raop-discover.c') diff --git a/src/modules/module-raop-discover.c b/src/modules/module-raop-discover.c index 3706d921..df393151 100644 --- a/src/modules/module-raop-discover.c +++ b/src/modules/module-raop-discover.c @@ -53,7 +53,7 @@ #include "module-raop-discover-symdef.h" PA_MODULE_AUTHOR("Colin Guthrie"); -PA_MODULE_DESCRIPTION("mDNS/DNS-SD Service Discovery of Airtunes"); +PA_MODULE_DESCRIPTION("mDNS/DNS-SD Service Discovery of RAOP devices"); PA_MODULE_VERSION(PACKAGE_VERSION); PA_MODULE_LOAD_ONCE(TRUE); @@ -172,9 +172,9 @@ static void resolver_cb( } if (device) - dname = pa_sprintf_malloc("airtunes.%s.%s", host_name, device); + dname = pa_sprintf_malloc("raop.%s.%s", host_name, device); else - dname = pa_sprintf_malloc("airtunes.%s", host_name); + dname = pa_sprintf_malloc("raop.%s", host_name); if (!(vname = pa_namereg_make_valid_name(dname))) { pa_log("Cannot construct valid device name from '%s'.", dname); -- cgit