Re: [PATCH 1/3] testsuite: warning when bash is not in use.

2014-08-19 Thread Natanael Copa
On Mon, 18 Aug 2014 00:11:10 -0300 Guilherme Maciel Ferreira guilherme.maciel.ferre...@gmail.com wrote: The test suite scripts fail with Bad substitution error when using a shell other than Bash. This patch adds an alert to the user, to remind him to change its /bin/sh symlink. Wouldn't it be

Re: [PATCH 1/3] testsuite: warning when bash is not in use.

2014-08-19 Thread Laszlo Papp
On Tue, Aug 19, 2014 at 7:24 AM, Natanael Copa nc...@alpinelinux.org wrote: On Mon, 18 Aug 2014 00:11:10 -0300 Guilherme Maciel Ferreira guilherme.maciel.ferre...@gmail.com wrote: The test suite scripts fail with Bad substitution error when using a shell other than Bash. This patch adds

modeprobe-small.c patch to avaid a segfault if infovec is NULL

2014-08-19 Thread Alfonso Ranieri
--- modprobe-small.orig.c 2014-08-19 23:08:32.782302599 +0200 +++ modprobe-small.c2014-08-19 23:07:42.056299346 +0200 @@ -640,7 +640,7 @@ */ /* rmmod or modprobe -r? unload module(s) */ - if (is_rmmod) { + if (is_rmmod (infovec != NULL)) {