From e01448dd84dca2ffeb6b7e76dd990818ee0e5242 Mon Sep 17 00:00:00 2001 From: Jacob Adams Date: Tue, 14 Jul 2015 16:24:50 -0400 Subject: [PATCH] Close #83 with fix suggested Change-Id: I83975a0963d09eab73df62adf81ce8027ca41bb0 --- minix/commands/isoread/isoread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minix/commands/isoread/isoread.c b/minix/commands/isoread/isoread.c index a6c806d4e..749e166f7 100644 --- a/minix/commands/isoread/isoread.c +++ b/minix/commands/isoread/isoread.c @@ -411,7 +411,7 @@ char *path; while (iso_711(dir_ptr->length) > 0 && offset < BLOCK_SIZE) { if (iso_cmp(name, dir_ptr, - (Read_Dir || (!Read_Dir && !last_in_path))) == 0) + (Read_Dir || !last_in_path)) == 0) { found = 1; break;