From: Nikos Mavrogiannopoulos Date: Sat, 17 Apr 2004 09:25:31 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: gnutls_1_1_10^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=075d59aaa2db0fe5230a05a4fb74a3e568e9c27a;p=thirdparty%2Fgnutls.git *** empty log message *** --- 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; } )