diff options
author | Max Kellermann <max@duempel.org> | 2009-12-15 20:29:44 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-12-15 20:29:44 +0100 |
commit | c959148ed1aae9b31a649a08f5dd8a51ef128942 (patch) | |
tree | a7b678b2a5989cd2499cf203eb1c3342554436c4 /src/archive_list.c | |
parent | 530e480748854f43819c3dd1dbe6418c343b4f64 (diff) | |
download | mpd-c959148ed1aae9b31a649a08f5dd8a51ef128942.tar.gz mpd-c959148ed1aae9b31a649a08f5dd8a51ef128942.tar.xz mpd-c959148ed1aae9b31a649a08f5dd8a51ef128942.zip |
archive/zip: renamed plugin to "zzip"
This plugin is based on libzzip.
Diffstat (limited to '')
-rw-r--r-- | src/archive_list.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/archive_list.c b/src/archive_list.c index 0edbb305f..9a9772326 100644 --- a/src/archive_list.c +++ b/src/archive_list.c @@ -26,15 +26,15 @@ #include <glib.h> extern const struct archive_plugin bz2_plugin; -extern const struct archive_plugin zip_plugin; +extern const struct archive_plugin zzip_archive_plugin; extern const struct archive_plugin iso_plugin; static const struct archive_plugin *const archive_plugins[] = { #ifdef HAVE_BZ2 &bz2_plugin, #endif -#ifdef HAVE_ZIP - &zip_plugin, +#ifdef HAVE_ZZIP + &zzip_archive_plugin, #endif #ifdef HAVE_ISO &iso_plugin, |