From 4dc016f8b3a5b3e322c1387f4bd3fc93c1913f2a Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Wed, 13 Aug 2014 12:25:54 -0700 Subject: [PATCH] Clarify a comment. Change-Id: Ibe9f4254d4a129880c3257eb723cd6195e5cbbab --- include/openssl/obj.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/openssl/obj.h b/include/openssl/obj.h index 81066bb6..5dd8886e 100644 --- a/include/openssl/obj.h +++ b/include/openssl/obj.h @@ -139,7 +139,8 @@ OPENSSL_EXPORT int OBJ_nid2cbb(CBB *out, int nid); * If |dont_search_names| is zero, then |s| will be matched against the long * and short names of a known objects to find a match. Otherwise |s| must * contain an ASCII string with a dotted sequence of numbers. The resulting - * object need not be previously known. It returns NULL on error. */ + * object need not be previously known. It returns a freshly allocated + * |ASN1_OBJECT| or NULL on error. */ OPENSSL_EXPORT ASN1_OBJECT *OBJ_txt2obj(const char *s, int dont_search_names); /* OBJ_obj2txt converts |obj| to a textual representation. If