diff options
author | maximilian attems <maks@debian.org> | 2006-03-18 09:24:43 +0100 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2006-03-18 09:24:43 +0100 |
commit | aad10a3ce2e626e9ca66e08da5edb0ad17d9bd16 (patch) | |
tree | 03014da8dac50b97ccf3249f0e25f943d1877a9e /scripts/functions | |
parent | 64a2b7212bd6f2cddf29b465cf3ced6f2e0fc807 (diff) | |
download | initramfs-tools-aad10a3ce2e626e9ca66e08da5edb0ad17d9bd16.tar.gz initramfs-tools-aad10a3ce2e626e9ca66e08da5edb0ad17d9bd16.zip |
* fix minor parsing
* add linear module
* manpage polishing
* udev_helper needs some conf sourced
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions index 6825519..05b7779 100644 --- a/scripts/functions +++ b/scripts/functions @@ -202,7 +202,7 @@ parse_numeric() { major=${1%:*} ;; *) - minor=$((0x${1#??})) + minor=$((0x${1#?})) major=$((0x${1%??})) ;; esac |