The branch, master has been updated via 7a8a33b6cdcb7ae614f9fab4816d9b86b30af445 (commit) from 325d4913601b67077f45c5826dfebd507ba9ed76 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7a8a33b6cdcb7ae614f9fab4816d9b86b30af445 Author: Amadeusz Å»oÅ?nowski <aidecoe@xxxxxxxxxxxx> Date: Mon Nov 15 17:34:36 2010 +0100 dracut-lib.sh: splitsep fix diff --git a/modules.d/99base/dracut-lib.sh b/modules.d/99base/dracut-lib.sh index f0c030b..37659fe 100755 --- a/modules.d/99base/dracut-lib.sh +++ b/modules.d/99base/dracut-lib.sh @@ -183,10 +183,10 @@ splitsep() { local tmp while [ -n "$str" -a -n "$*" ]; do - tmp="${str%%:*}" + tmp="${str%%$sep*}" eval "$1=${tmp}" str="${str#$tmp}" - str="${str#:}" + str="${str#$sep}" shift done ----------------------------------------------------------------------- Summary of changes: modules.d/99base/dracut-lib.sh | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) -- dracut - Initramfs generator using udev -- To unsubscribe from this list: send the line "unsubscribe initramfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html