]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
Fix typo.
authorSimon Josefsson <simon@josefsson.org>
Mon, 3 Aug 2009 21:48:36 +0000 (23:48 +0200)
committerSimon Josefsson <simon@josefsson.org>
Mon, 3 Aug 2009 21:48:36 +0000 (23:48 +0200)
lib/x509/common.c

index 824a06537b8fc229b3e1e50afffd063585db483c..2d286f5f1a456bf337b7a27ec4fb0b539f92a8fb 100644 (file)
@@ -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] = '?';