diff options
| author | Karel Zak <kzak@redhat.com> | 2024-10-02 12:15:40 +0200 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2025-01-08 13:57:43 +0100 |
| commit | 7a666fb196a5b2a9183b94f117b160f9448f21cb (patch) | |
| tree | 5276b753563e881de337fb042fceae3a7e3b4472 | |
| parent | e89fd1026f451e8d3ac8f3eea2ab0eb3ee4997a2 (diff) | |
| download | util-linux-7a666fb196a5b2a9183b94f117b160f9448f21cb.tar.gz | |
libmount: fix mnt_fs_match_target()
Signed-off-by: Karel Zak <kzak@redhat.com>
| -rw-r--r-- | libmount/src/fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmount/src/fs.c b/libmount/src/fs.c index 323b74d7a4..999fec49b7 100644 --- a/libmount/src/fs.c +++ b/libmount/src/fs.c @@ -1694,7 +1694,7 @@ int mnt_fs_match_target(struct libmnt_fs *fs, const char *target, if (!fs || !target) return 0; #ifdef HAVE_STATMOUNT_API - mnt_fs_try_statmount(fs, target, STATMOUNT_MNT_BASIC); + mnt_fs_try_statmount(fs, target, STATMOUNT_MNT_POINT); #endif if (!fs->target) return 0; |
