summaryrefslogtreecommitdiff
path: root/lib/element.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2012-10-01 22:03:03 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2012-10-01 22:14:09 +0200
commit6b4c44923d89de87d9b908b10eecc19f598f51c3 (patch)
treef10aad488011ff94f9bf0290a17de402c8f27d80 /lib/element.c
parent3745b54eee7934478aa0fcb7ceecb4797fd78115 (diff)
downloadlibtasn1-6b4c44923d89de87d9b908b10eecc19f598f51c3.tar.gz
libtasn1-6b4c44923d89de87d9b908b10eecc19f598f51c3.tar.bz2
libtasn1-6b4c44923d89de87d9b908b10eecc19f598f51c3.zip
node_data_struct -> asn_data_node_st
Diffstat (limited to 'lib/element.c')
-rw-r--r--lib/element.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/element.c b/lib/element.c
index 30cf0ad..ee10478 100644
--- a/lib/element.c
+++ b/lib/element.c
@@ -974,14 +974,14 @@ asn1_read_tag (asn_node_t root, const char *name, int *tagValue,
/**
* asn1_read_node_value:
* @node: pointer to a node.
- * @data: a point to a node_data_struct
+ * @data: a point to a asn_data_node_st
*
* Returns the value a data node inside a asn_node_t structure.
* The data returned should be handled as constant values.
*
* Returns: %ASN1_SUCCESS if the node exists.
**/
-int asn1_read_node_value (asn_node_t node, ASN1_DATA_NODE* data)
+int asn1_read_node_value (asn_node_t node, asn_data_node_st* data)
{
data->name = node->name;
data->value = node->value;