]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
Cleanup struct name, for doxygen documentation.
authorSimon Josefsson <simon@josefsson.org>
Thu, 10 Jul 2008 10:44:09 +0000 (12:44 +0200)
committerSimon Josefsson <simon@josefsson.org>
Thu, 10 Jul 2008 10:44:09 +0000 (12:44 +0200)
lib/x509/common.c

index ebf50a938b29fd2f1cadc327264c600be960eadb..56b81a8c87dcc1dc4cd4a090c48999271daf1fc8 100644 (file)
 #include <common.h>
 #include <time.h>
 
-typedef struct _oid2string
+struct oid2string
 {
   const char *oid;
   const char *ldap_desc;
   int choice;                  /* of type DirectoryString */
   int printable;
-} oid2string;
+};
 
 /* This list contains all the OIDs that may be
  * contained in a rdnSequence and are printable.
  */
-static const oid2string _oid2str[] = {
+static const struct oid2string _oid2str[] = {
   /* PKIX
    */
   {"1.3.6.1.5.5.7.9.1", "dateOfBirth", 0, 1},