summaryrefslogtreecommitdiff
path: root/package/cryptsetup/patches/patch-lib_utils_c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-08-22 15:15:19 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-08-22 15:15:19 +0200
commitacd5d0f4a9b1ed64975968126680f5247691ddba (patch)
treeb27d225ba08384000dc7ad799eea3bc3e0dd9d32 /package/cryptsetup/patches/patch-lib_utils_c
parent2a1d8eeb81808d8cc922d355b54c6f053e545ce5 (diff)
update to latest upstream
- add passphrase patch, already in svn upstream, thx phil
Diffstat (limited to 'package/cryptsetup/patches/patch-lib_utils_c')
-rw-r--r--package/cryptsetup/patches/patch-lib_utils_c16
1 files changed, 0 insertions, 16 deletions
diff --git a/package/cryptsetup/patches/patch-lib_utils_c b/package/cryptsetup/patches/patch-lib_utils_c
deleted file mode 100644
index 665620528..000000000
--- a/package/cryptsetup/patches/patch-lib_utils_c
+++ /dev/null
@@ -1,16 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
-
-* prevent segfault with uClibc
- http://www.spinics.net/lists/dm-crypt/msg01187.html
-
---- cryptsetup-1.0.6.orig/lib/utils.c 2007-12-01 17:29:27.000000000 +0100
-+++ cryptsetup-1.0.6/lib/utils.c 2008-12-25 14:18:46.523091272 +0100
-@@ -27,6 +27,8 @@ static char *error=NULL;
- void set_error_va(const char *fmt, va_list va)
- {
-
-+ if(!fmt) return;
-+
- if(error) {
- free(error);
- error=NULL;