diff options
author | Erwin Lansing <erwin@FreeBSD.org> | 2009-06-13 19:22:49 +0000 |
---|---|---|
committer | Erwin Lansing <erwin@FreeBSD.org> | 2009-06-13 19:22:49 +0000 |
commit | adbca29e83b79341b9269d0e582619cea059db3a (patch) | |
tree | 251ccf3e545218797aa6a6f6fa2fc4d62eccd102 /devel/tcl-trf/files/patch-rmd128 | |
parent | Remove devel/ruby-p4 as it has been marked BROKEN for over 6 months. (diff) |
Remove devel/tcl-trf as it has been marked BORKEN for over 5 months.
Notes
Notes:
svn path=/head/; revision=235726
Diffstat (limited to 'devel/tcl-trf/files/patch-rmd128')
-rw-r--r-- | devel/tcl-trf/files/patch-rmd128 | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/devel/tcl-trf/files/patch-rmd128 b/devel/tcl-trf/files/patch-rmd128 deleted file mode 100644 index 0936f10bf452..000000000000 --- a/devel/tcl-trf/files/patch-rmd128 +++ /dev/null @@ -1,24 +0,0 @@ -Patch obtained from the TRF's CVS... Many thanks to Denis Shaposhnikov -for finding it. - -TRF's RIPEMD160 implementation suffered from the same problem, but this -port does not use it. - - -mi - ---- generic/rmd128.c Wed Aug 9 15:13:18 2000 -+++ generic/rmd128.c Mon May 8 12:52:04 2006 -@@ -46,5 +46,5 @@ - typedef struct ripemd_context { - dword state [5]; /* state variables of ripemd-128 */ -- byte buf [CHUNK_SIZE]; /* buffer of 15-dword's */ -+ byte buf [CHUNK_SIZE]; /* buffer of 16-dword's */ - byte byteCount; /* number of bytes in buffer */ - dword lowc; /* lower half of a 64bit counter */ -@@ -235,5 +235,5 @@ - } /* k == CHUNK_SIZE => internal buffer was empty, so skip it entirely */ - -- while (bufLen > CHUNK_SIZE) { -+ while (bufLen >= CHUNK_SIZE) { - CountLength (ctx, CHUNK_SIZE); - |