aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/md.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>1998-06-25 10:19:08 +0000
committerWerner Koch <[email protected]>1998-06-25 10:19:08 +0000
commit06fd61d081367d1c7bdf7fd653fe56527ee2320a (patch)
treede84926892e4038c81953f635f8c3c52a9945d62 /cipher/md.c
parentsome more internall structure changes (diff)
downloadgnupg-06fd61d081367d1c7bdf7fd653fe56527ee2320a.tar.gz
gnupg-06fd61d081367d1c7bdf7fd653fe56527ee2320a.zip
nearly ready for 0.3.0
Diffstat (limited to '')
-rw-r--r--cipher/md.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cipher/md.c b/cipher/md.c
index 3fd7581d7..56f639cfd 100644
--- a/cipher/md.c
+++ b/cipher/md.c
@@ -314,8 +314,9 @@ md_final(MD_HANDLE a)
if( a->bufcount )
md_write( a, NULL, 0 );
- for(r=a->list; r; r = r->next )
+ for(r=a->list; r; r = r->next ) {
(*r->final)( &r->context );
+ }
}