diff options
author | Max Kellermann <max@duempel.org> | 2014-05-11 18:25:55 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-05-11 18:25:55 +0200 |
commit | fd1b04932a07e146a0a3c4ce52ace068a112587b (patch) | |
tree | fdc799083a93453b962e6bc9f8d9d95e624bd441 /src/input/plugins/CurlInputPlugin.cxx | |
parent | d4b625b48e6bbac61b4128aeeaf44911b2e3e03b (diff) | |
download | mpd-fd1b04932a07e146a0a3c4ce52ace068a112587b.tar.gz mpd-fd1b04932a07e146a0a3c4ce52ace068a112587b.tar.xz mpd-fd1b04932a07e146a0a3c4ce52ace068a112587b.zip |
InputStream: remove attribute "plugin"
Diffstat (limited to '')
-rw-r--r-- | src/input/plugins/CurlInputPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/plugins/CurlInputPlugin.cxx b/src/input/plugins/CurlInputPlugin.cxx index bb7ddcfdb..1b00258ea 100644 --- a/src/input/plugins/CurlInputPlugin.cxx +++ b/src/input/plugins/CurlInputPlugin.cxx @@ -106,7 +106,7 @@ struct CurlInputStream final : public InputStream { CurlInputStream(const char *_url, Mutex &_mutex, Cond &_cond, void *_buffer) - :InputStream(input_plugin_curl, _url, _mutex, _cond), + :InputStream(_url, _mutex, _cond), request_headers(nullptr), buffer((uint8_t *)_buffer, CURL_MAX_BUFFERED), paused(false), |