diff options
Diffstat (limited to 'usr.bin/ldap/ber.c')
-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 2eef9d7d80d..981595fc4ce 100644 --- a/usr.bin/ldap/ber.c +++ b/usr.bin/ldap/ber.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ber.c,v 1.15 2018/07/31 11:02:01 claudio Exp $ */ +/* $OpenBSD: ber.c,v 1.16 2018/07/31 11:37:18 rob Exp $ */ /* * Copyright (c) 2007, 2012 Reyk Floeter <reyk@openbsd.org> @@ -1100,7 +1100,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", + DPRINTF("ber read got class %d type %u, %s\n", class, type, cstruct ? "constructed" : "primitive"); totlen += r; if ((r = get_len(ber, &len)) == -1) |