summaryrefslogtreecommitdiffstats
path: root/crypto/stack/safestack.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/stack/safestack.h')
-rw-r--r--crypto/stack/safestack.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/stack/safestack.h b/crypto/stack/safestack.h
index c4a5a204f5..4da2ac5a79 100644
--- a/crypto/stack/safestack.h
+++ b/crypto/stack/safestack.h
@@ -101,7 +101,8 @@ STACK_OF(type) \
#define IMPLEMENT_STACK_OF(type) /* nada (obsolete in new safestack approach)*/
-/* Strings are special: normally an lhash entry will point to a single
+/*-
+ * Strings are special: normally an lhash entry will point to a single
* (somewhat) mutable object. In the case of strings:
*
* a) Instead of a single char, there is an array of chars, NUL-terminated.
@@ -110,7 +111,7 @@ STACK_OF(type) \
* So, they need their own declarations. Especially important for
* type-checking tools, such as Deputy.
*
-o * In practice, however, it appears to be hard to have a const
+ * In practice, however, it appears to be hard to have a const
* string. For now, I'm settling for dealing with the fact it is a
* string at all.
*/