mirror of
https://github.com/systemd/systemd.git
synced 2024-12-26 03:22:00 +03:00
fstab-generator: remove redundancy in mount_is_bind
This commit is contained in:
parent
16e6f6130b
commit
a83cbaccd0
@ -194,9 +194,7 @@ finish:
|
||||
static bool mount_is_bind(struct mntent *me) {
|
||||
assert(me);
|
||||
|
||||
return
|
||||
hasmntopt(me, "bind") ||
|
||||
streq(me->mnt_opts, "bind");
|
||||
return hasmntopt(me, "bind");
|
||||
}
|
||||
|
||||
static bool mount_is_network(struct mntent *me) {
|
||||
|
Loading…
Reference in New Issue
Block a user