From f81bdcb437612a4f2cea1459011282429298223e Mon Sep 17 00:00:00 2001 From: Ulrich Müller Date: Sat, 2 May 2015 20:16:59 +0000 Subject: [QA] Remove unused patch. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!) --- sys-fs/encfs/ChangeLog | 5 ++++- sys-fs/encfs/files/encfs-1.7.4-r68:69.patch | 31 ----------------------------- 2 files changed, 4 insertions(+), 32 deletions(-) delete mode 100644 sys-fs/encfs/files/encfs-1.7.4-r68:69.patch 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 -files/encfs-1.7.4-r68:69.patch: + [QA] Remove unused patch. 03 Apr 2015; Anthony G. Basile 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; -+ } -+ } - } - } - -- cgit v1.2.3-65-gdbad