diff options
author | Ulrich Müller <ulm@gentoo.org> | 2015-05-02 20:16:59 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2015-05-02 20:16:59 +0000 |
commit | f81bdcb437612a4f2cea1459011282429298223e (patch) | |
tree | f5d4de304e0477897444de605922a06f885c43e5 /sys-fs/encfs | |
parent | Version bump (diff) | |
download | gentoo-2-f81bdcb437612a4f2cea1459011282429298223e.tar.gz gentoo-2-f81bdcb437612a4f2cea1459011282429298223e.tar.bz2 gentoo-2-f81bdcb437612a4f2cea1459011282429298223e.zip |
[QA] Remove unused patch.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'sys-fs/encfs')
-rw-r--r-- | sys-fs/encfs/ChangeLog | 5 | ||||
-rw-r--r-- | sys-fs/encfs/files/encfs-1.7.4-r68:69.patch | 31 |
2 files changed, 4 insertions, 32 deletions
diff --git a/sys-fs/encfs/ChangeLog b/sys-fs/encfs/ChangeLog index d119d542f1ad..0d858ec7e590 100644 --- a/sys-fs/encfs/ChangeLog +++ b/sys-fs/encfs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-fs/encfs # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/encfs/ChangeLog,v 1.69 2015/04/03 15:29:58 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/encfs/ChangeLog,v 1.70 2015/05/02 20:16:59 ulm Exp $ + + 02 May 2015; Ulrich Müller <ulm@gentoo.org> -files/encfs-1.7.4-r68:69.patch: + [QA] Remove unused patch. 03 Apr 2015; Anthony G. Basile <blueness@gentoo.org> encfs-1.8.1.ebuild: Economize a bit on the syntax. diff --git a/sys-fs/encfs/files/encfs-1.7.4-r68:69.patch b/sys-fs/encfs/files/encfs-1.7.4-r68:69.patch deleted file mode 100644 index 0c27095fff16..000000000000 --- a/sys-fs/encfs/files/encfs-1.7.4-r68:69.patch +++ /dev/null @@ -1,31 +0,0 @@ -Index: encfs/base64.cpp -=================================================================== ---- encfs/base64.cpp (revision 68) -+++ encfs/base64.cpp (revision 69) -@@ -80,7 +80,7 @@ - } - - // we have at least one value that can be output -- char outVal = work & mask; -+ unsigned char outVal = work & mask; - work >>= dst2Pow; - workBits -= dst2Pow; - -@@ -96,8 +96,15 @@ - *outLoc++ = outVal; - - // we could have a partial value left in the work buffer.. -- if(workBits && outputPartialLastByte) -- *outLoc = work & mask; -+ if(outputPartialLastByte) -+ { -+ while(workBits > 0) -+ { -+ *outLoc++ = work & mask; -+ work >>= dst2Pow; -+ workBits -= dst2Pow; -+ } -+ } - } - } - |