aboutsummaryrefslogtreecommitdiffstats
path: root/src/archive_list.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-12-16 16:06:16 +0100
committerMax Kellermann <max@duempel.org>2009-12-16 15:55:37 +0100
commitbd97586cc48431ebb3e5be7cdfcae435458dc508 (patch)
treed5f03238a3015631c2e28236b6d7ac8af7fdf92a /src/archive_list.c
parentc3e0fbd9e4d05a751fb8b32a3524cfa9c95c1994 (diff)
downloadmpd-bd97586cc48431ebb3e5be7cdfcae435458dc508.tar.gz
mpd-bd97586cc48431ebb3e5be7cdfcae435458dc508.tar.xz
mpd-bd97586cc48431ebb3e5be7cdfcae435458dc508.zip
archive/iso: renamed plugin to "iso9660"
Based on libiso9660.
Diffstat (limited to '')
-rw-r--r--src/archive_list.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/archive_list.c b/src/archive_list.c
index 9a9772326..6331a95fd 100644
--- a/src/archive_list.c
+++ b/src/archive_list.c
@@ -27,7 +27,7 @@
extern const struct archive_plugin bz2_plugin;
extern const struct archive_plugin zzip_archive_plugin;
-extern const struct archive_plugin iso_plugin;
+extern const struct archive_plugin iso9660_archive_plugin;
static const struct archive_plugin *const archive_plugins[] = {
#ifdef HAVE_BZ2
@@ -36,8 +36,8 @@ static const struct archive_plugin *const archive_plugins[] = {
#ifdef HAVE_ZZIP
&zzip_archive_plugin,
#endif
-#ifdef HAVE_ISO
- &iso_plugin,
+#ifdef HAVE_ISO9660
+ &iso9660_archive_plugin,
#endif
NULL
};