commit 45a99ba7eb60b339c7ca64fdd886665ae4050ac7 parent f1e105418a8a3a7df285c4ed324f75db1b217bc8 Author: Jan Pobrislo <ccx@webprojekty.cz> Date: Tue, 21 Apr 2015 01:29:02 +0200 fix variable names in mbr_code Diffstat:
| M | zsh-functions/confz_fs_init | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/zsh-functions/confz_fs_init b/zsh-functions/confz_fs_init @@ -73,7 +73,7 @@ confz_mbr_code_check() { if cmp -n 440 $vars[device] $vars[from]; then return 0 else - do_command=( dd bs=440B count=1 if=$vars[file] of=$vars[from] ) + do_command=( dd bs=440B count=1 if=$vars[from] of=$vars[device] ) fi }