From 588fa1e76e632b8a43f1af424e9d47c7e99348a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sun, 24 Jul 2016 19:42:12 +0200 Subject: [PATCH] Haiku: widen globbing on device names We also need to match: /dev/disk/ata/0/slave/raw /dev/disk/usb/0/0/raw --- src/hdaccess.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hdaccess.c b/src/hdaccess.c index 49373b5b..5c4d3edf 100644 --- a/src/hdaccess.c +++ b/src/hdaccess.c @@ -384,7 +384,7 @@ list_disk_t *hd_parse(list_disk_t *list_disk, const int verbose, const int testd #elif defined(__HAIKU__) { #ifdef HAVE_GLOB_H - list_disk=hd_glob_parse("/dev/disk/*/*/master/raw", list_disk, verbose, testdisk_mode); + list_disk=hd_glob_parse("/dev/disk/*/*/*/raw", list_disk, verbose, testdisk_mode); #endif } #else