]> err.no Git - util-linux/commitdiff
lib: make open_device() optional in fsprobe.c
authorKarel Zak <kzak@redhat.com>
Wed, 18 Feb 2009 14:21:55 +0000 (15:21 +0100)
committerKarel Zak <kzak@redhat.com>
Wed, 18 Feb 2009 14:21:55 +0000 (15:21 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
lib/fsprobe.c

index 5fecc649228a3c242a74a4ed61109a9421014678..98c03e88f6a555b8753bef0a9ad4f26b2af6c5d6 100644 (file)
@@ -14,6 +14,7 @@
 #include "pathnames.h"
 #include "fsprobe.h"
 
+#if defined(HAVE_BLKID_EVALUATE_SPEC) || defined(HAVE_LIBVOLUME_ID)
 /* ask kernel developers why we need such ugly open() method... */
 static int
 open_device(const char *devname)
@@ -34,6 +35,7 @@ open_device(const char *devname)
 
        return -1;
 }
+#endif
 
 /*
  * Parses NAME=value, returns -1 on parse error, 0 success. The success is also