summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorKay Sievers2007-06-21 13:31:52 +0200
committerKarel Zak2007-06-26 12:53:16 +0200
commit9f70f8b143d591b44b57454bf346bc291875dd75 (patch)
tree1f0dd81c186b037770cd071474d442f9b31c1f2c /configure.ac
parentddate: fix compiler warnings (diff)
downloadkernel-qcow2-util-linux-9f70f8b143d591b44b57454bf346bc291875dd75.tar.gz
kernel-qcow2-util-linux-9f70f8b143d591b44b57454bf346bc291875dd75.tar.xz
kernel-qcow2-util-linux-9f70f8b143d591b44b57454bf346bc291875dd75.zip
mount: use encoded labels for volume_id
The current version of libvolume_id exports the encoding function for the symlinks names, so slashes in labels and other chars, that don't really fit into symlink names, will work as expected with LABEL=.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 5655bf0b8..d63b99d84 100644
--- a/configure.ac
+++ b/configure.ac
@@ -87,7 +87,7 @@ have_volume_id=no
if test x$with_fsprobe = xblkid; then
UTIL_CHECK_LIB(blkid, blkid_known_fstype)
elif test x$with_fsprobe = xvolume_id; then
- UTIL_CHECK_LIB(volume_id, volume_id_open_fd)
+ UTIL_CHECK_LIB(volume_id, volume_id_encode_string)
fi
if test $have_blkid = no && test $have_volume_id = no; then