summaryrefslogtreecommitdiff
path: root/lib/errors.c
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2008-11-17 11:48:01 +0100
committerSimon Josefsson <simon@josefsson.org>2008-11-17 11:48:01 +0100
commitab9f8ca91cfa70083a096c8043579e580b551351 (patch)
tree8b8af86e197e35a29e12ebc2b4413d03c6612215 /lib/errors.c
parentced62db2864d5aeee86ed46139450657f16c0777 (diff)
downloadlibtasn1-ab9f8ca91cfa70083a096c8043579e580b551351.tar.gz
libtasn1-ab9f8ca91cfa70083a096c8043579e580b551351.tar.bz2
libtasn1-ab9f8ca91cfa70083a096c8043579e580b551351.zip
Doc fix.
Diffstat (limited to 'lib/errors.c')
-rw-r--r--lib/errors.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/errors.c b/lib/errors.c
index cbfb622..c749df2 100644
--- a/lib/errors.c
+++ b/lib/errors.c
@@ -61,9 +61,11 @@ static const libtasn1_error_entry error_algorithms[] = {
* asn1_perror - prints a string to stderr with a description of an error
* @error: is an error returned by a libtasn1 function.
*
- * This function is like perror(). The only difference is that it
+ * This function is like perror(). The only difference is that it
* accepts an error returned by a libtasn1 function.
*
+ * This function replaces libtasn1_perror() in older libtasn1.
+ *
* Since: 1.6
**/
void
@@ -77,9 +79,11 @@ asn1_perror (asn1_retCode error)
* asn1_strerror - Returns a string with a description of an error
* @error: is an error returned by a libtasn1 function.
*
- * This function is similar to strerror(). The only difference is
+ * This function is similar to strerror(). The only difference is
* that it accepts an error (number) returned by a libtasn1 function.
*
+ * This function replaces libtasn1_strerror() in older libtasn1.
+ *
* Returns: Pointer to static zero-terminated string describing error
* code.
*