summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ldapd
diff options
context:
space:
mode:
authorrob <rob@openbsd.org>2018-07-01 20:03:48 +0000
committerrob <rob@openbsd.org>2018-07-01 20:03:48 +0000
commitae54110cd84e5face5bd38ad80649b8f2bdbdb53 (patch)
treeed355e0b522c7938936c6e31b3465636659be1be /usr.sbin/ldapd
parentacpi: clean up some inconsistent style in the hid matching arrays (diff)
downloadwireguard-openbsd-ae54110cd84e5face5bd38ad80649b8f2bdbdb53.tar.xz
wireguard-openbsd-ae54110cd84e5face5bd38ad80649b8f2bdbdb53.zip
s/constructive/constructed in DPRINTF output.
Diffstat (limited to 'usr.sbin/ldapd')
-rw-r--r--usr.sbin/ldapd/ber.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ldapd/ber.c b/usr.sbin/ldapd/ber.c
index 1d07c99bdfd..0353b06c7bb 100644
--- a/usr.sbin/ldapd/ber.c
+++ b/usr.sbin/ldapd/ber.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ber.c,v 1.16 2018/06/29 18:28:42 rob Exp $ */
+/* $OpenBSD: ber.c,v 1.17 2018/07/01 20:03:48 rob Exp $ */
/*
* Copyright (c) 2007, 2012 Reyk Floeter <reyk@openbsd.org>
@@ -1085,7 +1085,7 @@ ber_read_element(struct ber *ber, struct ber_element *elm)
if ((r = get_id(ber, &type, &class, &cstruct)) == -1)
return -1;
DPRINTF("ber read got class %d type %lu, %s\n",
- class, type, cstruct ? "constructive" : "primitive");
+ class, type, cstruct ? "constructed" : "primitive");
totlen += r;
if ((r = get_len(ber, &len)) == -1)
return -1;