aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/pkixproxy
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2007-10-31 21:24:16 +0000
committerAnders Broman <anders.broman@ericsson.com>2007-10-31 21:24:16 +0000
commit43700969a67aa1a0a6842ec31c46bc91b9e57a89 (patch)
tree7f72a3e76311caa37dfa1d299da900c6b214236c /asn1/pkixproxy
parent31fecd077182ebf3a32a9009921fb205819423b8 (diff)
Use oid_add_from_string for adding names.
(gsmmap and inap does not compile at the moment). svn path=/trunk/; revision=23324
Diffstat (limited to 'asn1/pkixproxy')
-rw-r--r--asn1/pkixproxy/packet-pkixproxy-template.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/asn1/pkixproxy/packet-pkixproxy-template.c b/asn1/pkixproxy/packet-pkixproxy-template.c
index f3939ca0bd..790ad6d690 100644
--- a/asn1/pkixproxy/packet-pkixproxy-template.c
+++ b/asn1/pkixproxy/packet-pkixproxy-template.c
@@ -78,8 +78,8 @@ void proto_register_pkixproxy(void) {
/*--- proto_reg_handoff_pkixproxy -------------------------------------------*/
void proto_reg_handoff_pkixproxy(void) {
#include "packet-pkixproxy-dis-tab.c"
- add_oid_str_name("1.3.6.1.5.5.7.21.0", "id-ppl-anyLanguage");
- add_oid_str_name("1.3.6.1.5.5.7.21.1", "id-ppl-inheritAll");
- add_oid_str_name("1.3.6.1.5.5.7.21.2", "id-ppl-independent");
+ oid_add_from_string("id-ppl-anyLanguage","1.3.6.1.5.5.7.21.0");
+ oid_add_from_string("id-ppl-inheritAll","1.3.6.1.5.5.7.21.1");
+ oid_add_from_string("id-ppl-independent","1.3.6.1.5.5.7.21.2");
}