diff options
author | Max Kellermann <max@duempel.org> | 2009-12-16 16:06:16 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-12-16 15:55:37 +0100 |
commit | bd97586cc48431ebb3e5be7cdfcae435458dc508 (patch) | |
tree | d5f03238a3015631c2e28236b6d7ac8af7fdf92a /src/archive_list.c | |
parent | c3e0fbd9e4d05a751fb8b32a3524cfa9c95c1994 (diff) | |
download | mpd-bd97586cc48431ebb3e5be7cdfcae435458dc508.tar.gz mpd-bd97586cc48431ebb3e5be7cdfcae435458dc508.tar.xz mpd-bd97586cc48431ebb3e5be7cdfcae435458dc508.zip |
archive/iso: renamed plugin to "iso9660"
Based on libiso9660.
Diffstat (limited to 'src/archive_list.c')
-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 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 }; |