aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-07-29 11:47:46 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-07-29 11:47:46 +0000
commit45cb9f9581f514e1fc731d6d1146e0ee2333066a (patch)
treed30c06f2da25eaf3c2ce9f51a8c44c343afd0aaf
parentfcf37c31838fbdd4f8cfe24c1c8ef957838a6de4 (diff)
downloadbusybox-w32-45cb9f9581f514e1fc731d6d1146e0ee2333066a.tar.gz
busybox-w32-45cb9f9581f514e1fc731d6d1146e0ee2333066a.tar.bz2
busybox-w32-45cb9f9581f514e1fc731d6d1146e0ee2333066a.zip
hush: fix inverted check (was making all break's to act as "break 99999")
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index eb70c9d9f..a2649d069 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -4571,7 +4571,7 @@ static int builtin_break(char **argv)
4571 depth_break_continue = UINT_MAX; 4571 depth_break_continue = UINT_MAX;
4572 } 4572 }
4573 } 4573 }
4574 if (depth_of_loop > depth_break_continue) 4574 if (depth_of_loop < depth_break_continue)
4575 depth_break_continue = depth_of_loop; 4575 depth_break_continue = depth_of_loop;
4576 return EXIT_SUCCESS; 4576 return EXIT_SUCCESS;
4577} 4577}