Clarify a comment. Change-Id: Ibe9f4254d4a129880c3257eb723cd6195e5cbbab
diff --git a/include/openssl/obj.h b/include/openssl/obj.h index 81066bb..5dd8886 100644 --- a/include/openssl/obj.h +++ b/include/openssl/obj.h
@@ -139,7 +139,8 @@ * 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