summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2004-04-17 09:25:31 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2004-04-17 09:25:31 +0000
commit075d59aaa2db0fe5230a05a4fb74a3e568e9c27a (patch)
tree99a8aba1da5fc6c548222d48cb2997ea81097faa
parentc5bbc33a7068ea4c1fb693110ef54787baea288d (diff)
downloadgnutls_1_1_10.tar.gz
*** empty log message ***gnutls_1_1_10
-rw-r--r--lib/gnutls_algorithms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gnutls_algorithms.c b/lib/gnutls_algorithms.c
index 741d8203ca..0d3af64b75 100644
--- a/lib/gnutls_algorithms.c
+++ b/lib/gnutls_algorithms.c
@@ -1426,7 +1426,7 @@ static const gnutls_pk_entry pk_algorithms[] = {
#define GNUTLS_PK_LOOP(b) \
const gnutls_pk_entry *p; \
- for(p = sign_algorithms; p->name != NULL; p++) { b ; }
+ for(p = pk_algorithms; p->name != NULL; p++) { b ; }
#define GNUTLS_PK_ALG_LOOP(a) \
GNUTLS_PK_LOOP( if(p->id == algorithm) { a; break; } )