diff options
author | rob <rob@cvs.openbsd.org> | 2018-07-01 20:03:49 +0000 |
---|---|---|
committer | rob <rob@cvs.openbsd.org> | 2018-07-01 20:03:49 +0000 |
commit | e21f7262dd718f62958b1e46205f1b958105f70c (patch) | |
tree | bfb9752b0b6338067f0ce74b46279a6015e0a35c /usr.bin/ldap | |
parent | e67ee024e6586d53d4c7345d6dd68da0e9e92fab (diff) |
s/constructive/constructed in DPRINTF output.
Diffstat (limited to 'usr.bin/ldap')
-rw-r--r-- | usr.bin/ldap/ber.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ldap/ber.c b/usr.bin/ldap/ber.c index 6a0e4768692..151ae34739c 100644 --- a/usr.bin/ldap/ber.c +++ b/usr.bin/ldap/ber.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ber.c,v 1.6 2018/06/29 18:28:41 rob Exp $ */ +/* $OpenBSD: ber.c,v 1.7 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; |