fsck: Fix build problem on MacOS X

Addresses-Sourceforge-Bug: #1972473

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
bitmap-optimize
Theodore Ts'o 2008-06-07 19:01:46 -04:00
parent 488c75a6a6
commit 2a6b60488f
1 changed files with 4 additions and 0 deletions

View File

@ -74,6 +74,7 @@ static char *parse_word(char **buf)
static errcode_t check_mntent_file(const char *mtab_file, const char *file,
int *mount_flags)
{
#ifdef HAVE_MNTENT_H
struct stat st_buf;
errcode_t retval = 0;
dev_t file_dev=0, file_rdev=0;
@ -177,6 +178,9 @@ static errcode_t check_mntent_file(const char *mtab_file, const char *file,
errout:
endmntent (f);
return retval;
#else /* !HAVE_MNTENT_H */
return 0;
#endif /* HAVE_MNTENT_H */
}
int is_mounted(const char *file)