diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-04 14:54:36 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-04 14:54:36 +0000 |
commit | 3349fc4da948eb1393cd9201cd9c2615c0056c97 (patch) | |
tree | 9dbee1bc6b58c09ada9914870ec3ef11bcaf868d /shell | |
parent | 400c5b6fc6aea218fdfbc14ac709a848d9c696b0 (diff) | |
download | busybox-w32-3349fc4da948eb1393cd9201cd9c2615c0056c97.tar.gz busybox-w32-3349fc4da948eb1393cd9201cd9c2615c0056c97.tar.bz2 busybox-w32-3349fc4da948eb1393cd9201cd9c2615c0056c97.zip |
applets: fix compile-time warning
Diffstat (limited to 'shell')
-rw-r--r-- | shell/README | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/shell/README b/shell/README index c3e7132ce..d962be9bf 100644 --- a/shell/README +++ b/shell/README | |||
@@ -1,8 +1,13 @@ | |||
1 | Various bits of what is known about busybox shells, in no particular order. | 1 | Various bits of what is known about busybox shells, in no particular order. |
2 | 2 | ||
3 | 2007-05-03 | 3 | 2007-05-03 |
4 | hush: new bug spotted: Ctrl-C on "while true; do true; done" kills shell, | 4 | hush: new bug spotted: Ctrl-C on "while true; do true; done" doesn't |
5 | not just the loop. | 5 | work right: |
6 | # while true; do true; done | ||
7 | [1] 0 true <-- pressing Ctrl-C several times... | ||
8 | [2] 0 true | ||
9 | [3] 0 true | ||
10 | Segmentation fault | ||
6 | 11 | ||
7 | 2007-05-03 | 12 | 2007-05-03 |
8 | hush: update on "sleep 1 | exit 3; echo $?" bug. | 13 | hush: update on "sleep 1 | exit 3; echo $?" bug. |