From fb429f2219f004900f7646d8e6afa96df0e87667 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 18 Feb 2009 15:34:51 +0100 Subject: fsck: cosmetic changes (NLS, paths, ...) Signed-off-by: Karel Zak --- lib/ismounted.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib/ismounted.c') diff --git a/lib/ismounted.c b/lib/ismounted.c index 85f4ab30c..4c164a954 100644 --- a/lib/ismounted.c +++ b/lib/ismounted.c @@ -17,6 +17,7 @@ #include #include +#include "pathnames.h" #include "ismounted.h" /* @@ -66,7 +67,7 @@ static int check_mntent_file(const char *mtab_file, const char *file, int retval = 0; dev_t file_dev=0, file_rdev=0; ino_t file_ino=0; - FILE *f; + FILE *f; char buf[1024], *device = 0, *mnt_dir = 0, *cp; *mount_flags = 0; @@ -172,13 +173,13 @@ int is_mounted(const char *file) int mount_flags = 0; #ifdef __linux__ - retval = check_mntent_file("/proc/mounts", file, &mount_flags); + retval = check_mntent_file(_PATH_PROC_MOUNTS, file, &mount_flags); if (retval) return 0; if (mount_flags) return 1; #endif /* __linux__ */ - retval = check_mntent_file("/etc/mtab", file, &mount_flags); + retval = check_mntent_file(_PATH_MOUNTED, file, &mount_flags); if (retval) return 0; return mount_flags; -- cgit v1.2.3-55-g7522