search for: 0d299c4

Displaying 1 result from an estimated 1 matches for "0d299c4".

Did you mean: 0d299c43
2019 Jan 18
0
[klibc:master] mount_main: Fix empty string check
...^ ``` Link: https://www.zytor.com/pipermail/klibc/2018-June/003994.html Signed-off-by: Ben Hutchings <ben at decadent.org.uk> --- usr/utils/mount_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/utils/mount_main.c b/usr/utils/mount_main.c index ab3cb71..0d299c4 100644 --- a/usr/utils/mount_main.c +++ b/usr/utils/mount_main.c @@ -43,9 +43,9 @@ static __noreturn print_mount(char *type) if (type && mnt->mnt_type && strcmp(type, mnt->mnt_type)) continue; printf("%s on %s", mnt->mnt_fsname, mnt->mnt_dir); - if (...