From: Simon Josefsson Date: Mon, 1 Sep 2008 14:18:56 +0000 (+0200) Subject: Fix typo. X-Git-Tag: gnutls_2_5_6~40 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ee5aaef35653dee0d6584fea229bc98760601c8;p=thirdparty%2Fgnutls.git Fix typo. --- diff --git a/lib/gnutls_algorithms.c b/lib/gnutls_algorithms.c index 67b3549f9e..a18f26eff4 100644 --- a/lib/gnutls_algorithms.c +++ b/lib/gnutls_algorithms.c @@ -2104,9 +2104,10 @@ gnutls_pk_algorithm_get_name (gnutls_pk_algorithm_t algorithm) const gnutls_pk_algorithm_t * gnutls_pk_list (void) { - const static supported_pks[] = { + const static gnutls_pk_algorithm_t supported_pks[] = { GNUTLS_PK_RSA, - GNUTLS_PK_DSA + GNUTLS_PK_DSA, + 0 }; return supported_pks;