diff options
Diffstat (limited to 'lib/structure.c')
-rw-r--r-- | lib/structure.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/structure.c b/lib/structure.c index 2184aa8..1c9dd59 100644 --- a/lib/structure.c +++ b/lib/structure.c @@ -134,7 +134,7 @@ _asn1_create_static_structure (asn1_node pointer, char *output_file_name, { while (1) { - p = _asn1_find_up (p); + p = _asn1_get_up (p); if (p == pointer) { p = NULL; @@ -221,7 +221,7 @@ asn1_array2tree (const asn1_static_node * array, asn1_node * definitions, if (p_last == *definitions) break; - p_last = _asn1_find_up (p_last); + p_last = _asn1_get_up (p_last); if (p_last == NULL) break; @@ -321,7 +321,7 @@ asn1_delete_structure2 (asn1_node * structure, unsigned int flags) p2 = p->right; if (p != *structure) { - p3 = _asn1_find_up (p); + p3 = _asn1_get_up (p); _asn1_set_down (p3, p2); _asn1_remove_node (p, flags); p = p3; @@ -331,7 +331,7 @@ asn1_delete_structure2 (asn1_node * structure, unsigned int flags) p3 = _asn1_find_left (p); if (!p3) { - p3 = _asn1_find_up (p); + p3 = _asn1_get_up (p); if (p3) _asn1_set_down (p3, p2); else @@ -379,7 +379,7 @@ asn1_delete_element (asn1_node structure, const char *element_name) p3 = _asn1_find_left (source_node); if (!p3) { - p3 = _asn1_find_up (source_node); + p3 = _asn1_get_up (source_node); if (p3) _asn1_set_down (p3, p2); else if (source_node->right) @@ -439,8 +439,8 @@ _asn1_copy_structure3 (asn1_node source_node) else { move = UP; - p_s = _asn1_find_up (p_s); - p_d = _asn1_find_up (p_d); + p_s = _asn1_get_up (p_s); + p_d = _asn1_get_up (p_d); } } while (p_s != source_node); @@ -540,7 +540,7 @@ _asn1_type_choice_config (asn1_node node) move = UP; } if (move == UP) - p = _asn1_find_up (p); + p = _asn1_get_up (p); } return ASN1_SUCCESS; @@ -591,7 +591,7 @@ _asn1_expand_identifier (asn1_node * node, asn1_node root) _asn1_set_right (p3, p2); else { - p3 = _asn1_find_up (p); + p3 = _asn1_get_up (p); if (p3) _asn1_set_down (p3, p2); else @@ -647,7 +647,7 @@ _asn1_expand_identifier (asn1_node * node, asn1_node root) move = UP; } if (move == UP) - p = _asn1_find_up (p); + p = _asn1_get_up (p); } return ASN1_SUCCESS; @@ -1015,7 +1015,7 @@ asn1_print_structure (FILE * out, asn1_node structure, const char *name, { while (1) { - p = _asn1_find_up (p); + p = _asn1_get_up (p); if (p == root) { p = NULL; |