diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-18 16:22:26 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-18 16:22:26 +0200 |
commit | 6ae6426a7485b5835c23aea198b3065f491d918b (patch) | |
tree | 79ebcee570986e27d7137720ca3139af277a162b /include | |
parent | b71ce023e9527b6afaa497ce62ca53a74cf94cef (diff) | |
download | busybox-w32-6ae6426a7485b5835c23aea198b3065f491d918b.tar.gz busybox-w32-6ae6426a7485b5835c23aea198b3065f491d918b.tar.bz2 busybox-w32-6ae6426a7485b5835c23aea198b3065f491d918b.zip |
fix mountpoint test to not prevemt mkfs_xxx from making image in any file
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 936d98a23..c7b4de13c 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -995,7 +995,7 @@ extern void run_applet_no_and_exit(int a, char **argv) NORETURN FAST_FUNC; | |||
995 | 995 | ||
996 | #ifdef HAVE_MNTENT_H | 996 | #ifdef HAVE_MNTENT_H |
997 | extern int match_fstype(const struct mntent *mt, const char *fstypes) FAST_FUNC; | 997 | extern int match_fstype(const struct mntent *mt, const char *fstypes) FAST_FUNC; |
998 | extern struct mntent *find_mount_point(const char *name) FAST_FUNC; | 998 | extern struct mntent *find_mount_point(const char *name, int subdir_too) FAST_FUNC; |
999 | #endif | 999 | #endif |
1000 | extern void erase_mtab(const char * name) FAST_FUNC; | 1000 | extern void erase_mtab(const char * name) FAST_FUNC; |
1001 | extern unsigned int tty_baud_to_value(speed_t speed) FAST_FUNC; | 1001 | extern unsigned int tty_baud_to_value(speed_t speed) FAST_FUNC; |