diff options
Diffstat (limited to 'lib/gnutls_algorithms.c')
-rw-r--r-- | lib/gnutls_algorithms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gnutls_algorithms.c b/lib/gnutls_algorithms.c index e023a432d4..124774ffae 100644 --- a/lib/gnutls_algorithms.c +++ b/lib/gnutls_algorithms.c @@ -1974,7 +1974,7 @@ gnutls_pk_get_id (const char *name) { if (strcasecmp (name, "RSA") == 0) return GNUTLS_PK_RSA; - else if (strcasecmp (name, "DSA") == 0) + else if (strcasecmp (name, "DSA") == 0) return GNUTLS_PK_DSA; return GNUTLS_PK_UNKNOWN; |