Re: [PATCH 2/2] ash: use alloca to get rid of setjmp

2015-07-12 Thread Denys Vlasenko
Applied, thanks. On Wed, Jul 1, 2015 at 5:46 PM, Ron Yorston r...@frippery.org wrote: Now that the only thing protected by setjmp/longjmp is the saved string, we can allocate it on the stack to get rid of the jump. Based on commit bd35d8e from git://git.kernel.org/pub/scm/utils/dash/dash.git

[PATCH] ipcalc: fix trivial usage message

2015-07-12 Thread Ron Yorston
Signed-off-by: Ron Yorston r...@pobox.com --- networking/ipcalc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/networking/ipcalc.c b/networking/ipcalc.c index 3c8b8bf..f4bacd7 100644 --- a/networking/ipcalc.c +++ b/networking/ipcalc.c @@ -13,7 +13,8 @@ */

Re: [RESEND][PATCH 1/1] Removes stray empty line from code

2015-07-12 Thread Denys Vlasenko
Applied, thanks! On Wed, Jun 10, 2015 at 5:47 AM, Maninder Singh maninder...@samsung.com wrote: From: Maninder Singh maninder...@samsung.com This patch removes stray empty line from busybox code reported by script find_stray_empty_lines Signed-off-by: Maninder Singh maninder...@samsung.com

[PATCH] uname: make OS name configurable

2015-07-12 Thread Ron Yorston
A mailing list thread in September 2013 discussed changing the string returned by the non-POSIX 'uname -o' option. Nothing ever came of this because there was no agreement as to what the string should be. Make the string configurable so that people can decide for themselves. Signed-off-by: Ron