summaryrefslogtreecommitdiffstats
path: root/cipher
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>1998-12-23 17:16:57 +0100
committerWerner Koch <wk@gnupg.org>1998-12-23 17:16:57 +0100
commit1df0e1540dd8f0dbaae595ad42862cb2abceccc6 (patch)
treee171743cfca5e49d38bd1a36ffe4c2e7667e1ac6 /cipher
parentSee ChangeLog: Wed Dec 23 13:34:22 CET 1998 Werner Koch (diff)
downloadgnupg2-1df0e1540dd8f0dbaae595ad42862cb2abceccc6.tar.xz
gnupg2-1df0e1540dd8f0dbaae595ad42862cb2abceccc6.zip
See ChangeLog: Wed Dec 23 17:12:24 CET 1998 Werner KochV0-9-0
Diffstat (limited to 'cipher')
-rw-r--r--cipher/ChangeLog4
-rw-r--r--cipher/md.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/cipher/ChangeLog b/cipher/ChangeLog
index 08d27bce6..20abfc7be 100644
--- a/cipher/ChangeLog
+++ b/cipher/ChangeLog
@@ -1,3 +1,7 @@
+Wed Dec 23 17:12:24 CET 1998 Werner Koch <wk@isil.d.shuttle.de>
+
+ * md.c (md_copy): Reset debug.
+
Mon Dec 14 21:18:49 CET 1998 Werner Koch <wk@isil.d.shuttle.de>
* random.c (read_random_source): Changed the interface to the
diff --git a/cipher/md.c b/cipher/md.c
index de74c283e..b1274c63c 100644
--- a/cipher/md.c
+++ b/cipher/md.c
@@ -256,6 +256,7 @@ md_copy( MD_HANDLE a )
: m_alloc( sizeof *b );
memcpy( b, a, sizeof *a );
b->list = NULL;
+ b->debug = NULL;
/* and now copy the complete list of algorithms */
/* I know that the copied list is reversed, but that doesn't matter */
for( ar=a->list; ar; ar = ar->next ) {
@@ -270,7 +271,7 @@ md_copy( MD_HANDLE a )
/****************
- * Reset all contexts and discard any buffered stuuf. This may be used
+ * Reset all contexts and discard any buffered stuff. This may be used
* instead of a md_close(); md_open().
*/
void