diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-08-22 16:19:35 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-08-22 16:19:35 +0200 |
commit | 5ea6a2557f7579a576c494fe288ff424e1a82604 (patch) | |
tree | f9c0527a32b240ad0b98da24ecbeeeef9a87e514 /package/cryptsetup/patches/patch-lib_setup_c | |
parent | 0bc52de49b72c721c823042c1920b90887c8e0b1 (diff) |
build static library as pre-configure task
- hackish way, but I was not in the mood to hack the autotool stuff
- add patch I wanted to add last time ;)
Diffstat (limited to 'package/cryptsetup/patches/patch-lib_setup_c')
-rw-r--r-- | package/cryptsetup/patches/patch-lib_setup_c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/package/cryptsetup/patches/patch-lib_setup_c b/package/cryptsetup/patches/patch-lib_setup_c new file mode 100644 index 000000000..97b356f68 --- /dev/null +++ b/package/cryptsetup/patches/patch-lib_setup_c @@ -0,0 +1,17 @@ +already added in svn upstream +--- cryptsetup-1.0.7.orig/lib/setup.c 2009-07-22 13:12:44.000000000 +0200 ++++ cryptsetup-1.0.7/lib/setup.c 2009-08-22 15:10:32.000000000 +0200 +@@ -542,7 +542,12 @@ static int __crypt_luks_open(int arg, st + start: + mk=NULL; + +- if(get_key(prompt, &password, &passwordLen, 0, options->key_file, options->passphrase_fd, options->timeout, options->flags)) ++ if(options->passphrase) { ++ passwordLen = strlen(options->passphrase); ++ password = safe_alloc(passwordLen + 1); ++ strncpy(password, options->passphrase, passwordLen + 1); ++ tries = 0; ++ } else if(get_key(prompt, &password, &passwordLen, 0, options->key_file, options->passphrase_fd, options->timeout, options->flags)) + tries--; + else + tries = 0; |