summaryrefslogtreecommitdiff
path: root/lib/libutil/ber.c
diff options
context:
space:
mode:
authorrob <rob@cvs.openbsd.org>2019-05-16 21:12:34 +0000
committerrob <rob@cvs.openbsd.org>2019-05-16 21:12:34 +0000
commita84b386a419dc37d3e5a9f647efeba2a2700fb43 (patch)
treed6f201f9c4f3a433094dab030afdd980be8cee46 /lib/libutil/ber.c
parent41713fd159d8883f70d6cca61869e3e9001ff659 (diff)
Add XXX to a comment.
Diffstat (limited to 'lib/libutil/ber.c')
-rw-r--r--lib/libutil/ber.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libutil/ber.c b/lib/libutil/ber.c
index 35aa247dc19..13933a82cc7 100644
--- a/lib/libutil/ber.c
+++ b/lib/libutil/ber.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ber.c,v 1.6 2019/05/12 20:25:10 rob Exp $ */
+/* $OpenBSD: ber.c,v 1.7 2019/05/16 21:12:33 rob Exp $ */
/*
* Copyright (c) 2007, 2012 Reyk Floeter <reyk@openbsd.org>
@@ -293,7 +293,7 @@ ber_get_string(struct ber_element *elm, char **s)
{
if (elm->be_encoding != BER_TYPE_OCTETSTRING)
return -1;
- /* Some components use getstring on binary data containing \0 */
+ /* XXX some components use getstring on binary data containing \0 */
#if 0
if (memchr(elm->be_val, '\0', elm->be_len) != NULL)
return -1;