diff options
author | Max Kellermann <max@duempel.org> | 2013-12-29 16:46:02 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-12-29 16:46:02 +0100 |
commit | 5bb563e3bc72b7aaea4e2df3280f38085bb515ba (patch) | |
tree | 2052618d1b51651969fe715c20e2203f00a3b972 /src/UpdateContainer.hxx | |
parent | 9be82891b01ba2190a97032a2f84b70151bc2358 (diff) | |
download | mpd-5bb563e3bc72b7aaea4e2df3280f38085bb515ba.tar.gz mpd-5bb563e3bc72b7aaea4e2df3280f38085bb515ba.tar.xz mpd-5bb563e3bc72b7aaea4e2df3280f38085bb515ba.zip |
UpdateContainer: pass suffix instead of DecoderPlugin
Instead of using the first DecoderPlugin that supports the suffix, use
the first one that actually implements the "container_scan" method.
Diffstat (limited to '')
-rw-r--r-- | src/UpdateContainer.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/UpdateContainer.hxx b/src/UpdateContainer.hxx index 3b54fb39f..b8f0ad39a 100644 --- a/src/UpdateContainer.hxx +++ b/src/UpdateContainer.hxx @@ -31,6 +31,6 @@ bool update_container_file(Directory &directory, const char *name, const struct stat *st, - const DecoderPlugin &plugin); + const char *suffix); #endif |