summaryrefslogtreecommitdiff
path: root/lib/coding.c
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2006-03-08 14:03:16 +0000
committerSimon Josefsson <simon@josefsson.org>2006-03-08 14:03:16 +0000
commit12312acd172b073bebb57d8e01624d133ca734d4 (patch)
tree34383de4bba98af641dc366550ec3b4fdf8d9da6 /lib/coding.c
parent3e29e714d1f06bdcdb5b5b567e8a8a40dbe6127c (diff)
downloadlibtasn1-12312acd172b073bebb57d8e01624d133ca734d4.tar.gz
libtasn1-12312acd172b073bebb57d8e01624d133ca734d4.tar.bz2
libtasn1-12312acd172b073bebb57d8e01624d133ca734d4.zip
Export asn1_find_node and asn1_find_up.
Diffstat (limited to 'lib/coding.c')
-rw-r--r--lib/coding.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/coding.c b/lib/coding.c
index 41c01d9..96ccb99 100644
--- a/lib/coding.c
+++ b/lib/coding.c
@@ -756,7 +756,7 @@ asn1_der_coding(ASN1_TYPE element,const char *name,void *ider,int *len,
asn1_retCode ris;
unsigned char* der = ider;
- node=_asn1_find_node(element,name);
+ node=asn1_find_node(element,name);
if(node==NULL) return ASN1_ELEMENT_NOT_FOUND;
max_len=*len;
@@ -937,7 +937,7 @@ asn1_der_coding(ASN1_TYPE element,const char *name,void *ider,int *len,
move=RIGHT;
continue;
}
- else p=_asn1_find_up(p);
+ else p=asn1_find_up(p);
move=UP;
}
if(move==UP){
@@ -988,7 +988,7 @@ asn1_der_coding(ASN1_TYPE element,const char *name,void *ider,int *len,
if(p->right) p=p->right;
else move=UP;
}
- if(move==UP) p=_asn1_find_up(p);
+ if(move==UP) p=asn1_find_up(p);
}
*len=counter;