From: Simon Josefsson Date: Thu, 10 Jul 2008 10:44:09 +0000 (+0200) Subject: Cleanup struct name, for doxygen documentation. X-Git-Tag: gnutls_2_5_3~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6255faf4beefebbd4e58914ad97fc62a0848639d;p=thirdparty%2Fgnutls.git Cleanup struct name, for doxygen documentation. --- diff --git a/lib/x509/common.c b/lib/x509/common.c index ebf50a938b..56b81a8c87 100644 --- a/lib/x509/common.c +++ b/lib/x509/common.c @@ -35,18 +35,18 @@ #include #include -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},