summaryrefslogtreecommitdiffstats
path: root/mtab.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2019-08-29 23:45:45 -0400
committerTavian Barnes <tavianator@tavianator.com>2019-08-29 23:45:45 -0400
commit7e54db178afde65edea15787f47ee94d2a88f416 (patch)
treedf7e18b5fc8d5872cc269c48bd9c551a617e2dd4 /mtab.c
parent41ac289ca572cf0ed5ecfcc1c73ae59eef461a9e (diff)
downloadbfs-7e54db178afde65edea15787f47ee94d2a88f416.tar.xz
mtab: Rename maybe_mount to might_be_mount
Diffstat (limited to 'mtab.c')
-rw-r--r--mtab.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mtab.c b/mtab.c
index 57ea402..fd2d71e 100644
--- a/mtab.c
+++ b/mtab.c
@@ -219,7 +219,7 @@ const char *bfs_fstype(const struct bfs_mtab *mtab, const struct bfs_stat *statb
}
}
-bool bfs_maybe_mount(const struct bfs_mtab *mtab, const char *path) {
+bool bfs_might_be_mount(const struct bfs_mtab *mtab, const char *path) {
const char *name = xbasename(path);
return trie_find_str(&mtab->names, name);
}