aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/upnp/ContentDirectoryService.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-01-26 11:37:52 +0100
committerMax Kellermann <max@duempel.org>2014-10-10 22:43:40 +0200
commit464767c5fd0671b93f97f79905bdfb987826f6ef (patch)
tree371199fc0413bece2b143042e4fc23b2cd9f1e36 /src/lib/upnp/ContentDirectoryService.cxx
parenta9c3ca86065a5db6a9aeed32a25250cb785702a1 (diff)
downloadmpd-464767c5fd0671b93f97f79905bdfb987826f6ef.tar.gz
mpd-464767c5fd0671b93f97f79905bdfb987826f6ef.tar.xz
mpd-464767c5fd0671b93f97f79905bdfb987826f6ef.zip
db/upnp/Util: move caturl() to util/UriUtil.cxx
Diffstat (limited to '')
-rw-r--r--src/lib/upnp/ContentDirectoryService.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/upnp/ContentDirectoryService.cxx b/src/lib/upnp/ContentDirectoryService.cxx
index ef8757ec5..ee7c0d7f5 100644
--- a/src/lib/upnp/ContentDirectoryService.cxx
+++ b/src/lib/upnp/ContentDirectoryService.cxx
@@ -24,11 +24,12 @@
#include "ixmlwrap.hxx"
#include "Util.hxx"
#include "Action.hxx"
+#include "util/UriUtil.hxx"
#include "util/Error.hxx"
ContentDirectoryService::ContentDirectoryService(const UPnPDevice &device,
const UPnPService &service)
- :m_actionURL(caturl(device.URLBase, service.controlURL)),
+ :m_actionURL(uri_apply_base(device.URLBase, service.controlURL)),
m_serviceType(service.serviceType),
m_deviceId(device.UDN),
m_friendlyName(device.friendlyName),