[Pkg-loop-aes-commits] r1338 - in /trunk/loop-aes-utils/debian: initramfs-tools-hook initramfs-tools-script

lmamane at users.alioth.debian.org lmamane at users.alioth.debian.org
Tue Dec 5 09:55:00 CET 2006


Author: lmamane
Date: Tue Dec  5 09:55:00 2006
New Revision: 1338

URL: http://svn.debian.org/wsvn/pkg-loop-aes/?sc=1&rev=1338
Log:
Put quotes around cipher name the right way.

Modified:
    trunk/loop-aes-utils/debian/initramfs-tools-hook
    trunk/loop-aes-utils/debian/initramfs-tools-script

Modified: trunk/loop-aes-utils/debian/initramfs-tools-hook
URL: http://svn.debian.org/wsvn/pkg-loop-aes/trunk/loop-aes-utils/debian/initramfs-tools-hook?rev=1338&op=diff
==============================================================================
--- trunk/loop-aes-utils/debian/initramfs-tools-hook (original)
+++ trunk/loop-aes-utils/debian/initramfs-tools-hook Tue Dec  5 09:55:00 2006
@@ -68,7 +68,7 @@
     for opt in $rootoptions; do
 	case "$opt" in
 	    encryption=*)
-		cipher="$(decode_cipher ${opt#encryption=})"
+		cipher="$(decode_cipher "${opt#encryption=}")"
 		if [ -n "$cipher" ]; then
 		    rootencryption="${rootencryption}${rootencryption:+:}${cipher}"
 		fi

Modified: trunk/loop-aes-utils/debian/initramfs-tools-script
URL: http://svn.debian.org/wsvn/pkg-loop-aes/trunk/loop-aes-utils/debian/initramfs-tools-script?rev=1338&op=diff
==============================================================================
--- trunk/loop-aes-utils/debian/initramfs-tools-script (original)
+++ trunk/loop-aes-utils/debian/initramfs-tools-script Tue Dec  5 09:55:00 2006
@@ -78,7 +78,7 @@
     for opt in $loopaes_opts; do
 	case $opt in
 	    encryption=*)
-		cipher="$(decode_cipher ${opt#encryption=})"
+		cipher="$(decode_cipher "${opt#encryption=}")"
 		if [ -n "$cipher" ]; then
 		    rootencryption="${rootencryption}${rootencryption:+:}${cipher}"
 		fi




More information about the Pkg-loop-aes-commits mailing list