From: Simon Josefsson Date: Mon, 3 Aug 2009 21:48:36 +0000 (+0200) Subject: Fix typo. X-Git-Tag: gnutls_2_9_2~40 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c9dba57f8dbb05aef47054e333fc2393f34dcb80;p=thirdparty%2Fgnutls.git Fix typo. --- diff --git a/lib/x509/common.c b/lib/x509/common.c index 824a06537b..2d286f5f1a 100644 --- a/lib/x509/common.c +++ b/lib/x509/common.c @@ -313,7 +313,7 @@ _gnutls_x509_oid_data2string (const char *oid, void *value, if (res) /* Convert null char in the name to '?' * to protect applications */ - for (i = 0; i < *res_size; i++) { + for (i = 0; i < *res_size; i++) if (res[i] == 0) res[i] = '?';