summaryrefslogtreecommitdiff
path: root/usr.bin/ldap
diff options
context:
space:
mode:
authorrob <rob@cvs.openbsd.org>2018-06-27 20:38:11 +0000
committerrob <rob@cvs.openbsd.org>2018-06-27 20:38:11 +0000
commit75310efb4f017a5e10fc200c85e6fc051069734a (patch)
treeac2a7b0aae088f96e9aac9cb9ec9cc1df89dad5b /usr.bin/ldap
parentf3da76155dc6796dc02dd3477b117d73bd61fb8c (diff)
Synchronize some comments.
Diffstat (limited to 'usr.bin/ldap')
-rw-r--r--usr.bin/ldap/ber.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ldap/ber.c b/usr.bin/ldap/ber.c
index 1402c1b8b70..91a0a7cf648 100644
--- a/usr.bin/ldap/ber.c
+++ b/usr.bin/ldap/ber.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ber.c,v 1.3 2018/06/27 20:11:27 rob Exp $ */
+/* $OpenBSD: ber.c,v 1.4 2018/06/27 20:38:10 rob Exp $ */
/*
* Copyright (c) 2007 Reyk Floeter <reyk@vantronix.net>
@@ -1079,8 +1079,8 @@ ber_read_element(struct ber *ber, struct ber_element *elm)
DPRINTF("ber read element size %zd\n", len);
totlen += r + len;
- /* If the total size of the element is larger than external
- * buffer don't bother to continue. */
+ /* If the total size of the element is larger than the buffer
+ * don't bother to continue. */
if (len > ber->br_rend - ber->br_rptr) {
errno = ECANCELED;
return -1;