(oid_private_rc2_40): simply

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17148 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-04-21 21:18:14 +00:00
parent cfdc3e297c
commit f574f03d70

View File

@@ -1138,15 +1138,10 @@ struct hx509_crypto_data {
static const heim_oid * static const heim_oid *
oid_private_rc2_40(void) oid_private_rc2_40(void)
{ {
#define private_oid(name, number) \ static const unsigned oid_data[] = { 127, 1 };
static unsigned name##_oid_data[] = { 127, number }; \ static const heim_oid oid = { 2, oid_data };
static heim_oid name##_oid = { 2, name##_oid_data }
private_oid(private_rc2_40, 1); return &oid;
#undef private_oid
return &private_rc2_40_oid;
} }