diff options
Diffstat (limited to 'misc/fstab.c')
-rw-r--r-- | misc/fstab.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/misc/fstab.c b/misc/fstab.c index 3e95451775..408d424411 100644 --- a/misc/fstab.c +++ b/misc/fstab.c @@ -163,12 +163,12 @@ fstab_convert (struct fstab_state *state) f->fs_file = m->mnt_dir; f->fs_vfstype = m->mnt_type; f->fs_mntops = m->mnt_opts; - f->fs_type = (__hasmntopt (m, FSTAB_RW) ? FSTAB_RW : - __hasmntopt (m, FSTAB_RQ) ? FSTAB_RQ : - __hasmntopt (m, FSTAB_RO) ? FSTAB_RO : - __hasmntopt (m, FSTAB_SW) ? FSTAB_SW : - __hasmntopt (m, FSTAB_XX) ? FSTAB_XX : - "??"); + f->fs_type = (__hasmntopt (m, FSTAB_RW) ? FSTAB_RW + : __hasmntopt (m, FSTAB_RQ) ? FSTAB_RQ + : __hasmntopt (m, FSTAB_RO) ? FSTAB_RO + : __hasmntopt (m, FSTAB_SW) ? FSTAB_SW + : __hasmntopt (m, FSTAB_XX) ? FSTAB_XX + : "??"); f->fs_freq = m->mnt_freq; f->fs_passno = m->mnt_passno; return f; |