diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2014-05-17 08:15:53 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2014-05-17 08:17:07 +0200 |
commit | cd9876aafe51081022f39407201d83a954750aa5 (patch) | |
tree | 55bae48732732340f5fe494c661810b72c2fa74a | |
parent | 44a4680d83fe4ff732e4e1b826c987bc5d67bd1c (diff) | |
download | libtasn1-cd9876aafe51081022f39407201d83a954750aa5.tar.gz libtasn1-cd9876aafe51081022f39407201d83a954750aa5.tar.bz2 libtasn1-cd9876aafe51081022f39407201d83a954750aa5.zip |
doc update
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | lib/decoding.c | 3 |
2 files changed, 5 insertions, 2 deletions
@@ -3,7 +3,9 @@ GNU Libtasn1 NEWS -*- outline -*- * Noteworthy changes in release 3.6 (unreleased) [stable] - Corrected an off-by-one error in ASN.1 DER tag decoding. - Several improvements and new safety checks on DER decoding. -- asn1_der_decoding_element() is an alias to asn1_der_decoding(). +- Marked asn1_der_decoding_element() as deprecated. Use + asn1_der_decoding() instead. + * Noteworthy changes in release 3.5 (released 2014-05-01) [stable] - Correctly handle decoding of recursive CHOICE options. diff --git a/lib/decoding.c b/lib/decoding.c index 2d7b7ef..bd96d90 100644 --- a/lib/decoding.c +++ b/lib/decoding.c @@ -1501,7 +1501,8 @@ cleanup: * decoding procedure, the *@STRUCTURE is deleted and set equal to * %NULL. * - * This function is deprecated. Use asn1_der_decoding() instead. + * This function is deprecated and may just be an alias to asn1_der_decoding + * in future versions. Use asn1_der_decoding() instead. * * Returns: %ASN1_SUCCESS if DER encoding OK, %ASN1_ELEMENT_NOT_FOUND * if ELEMENT is %NULL or @elementName == NULL, and |