summaryrefslogtreecommitdiff
path: root/usr.sbin/snmpd
diff options
context:
space:
mode:
authorrob <rob@cvs.openbsd.org>2018-07-01 20:03:49 +0000
committerrob <rob@cvs.openbsd.org>2018-07-01 20:03:49 +0000
commite21f7262dd718f62958b1e46205f1b958105f70c (patch)
treebfb9752b0b6338067f0ce74b46279a6015e0a35c /usr.sbin/snmpd
parente67ee024e6586d53d4c7345d6dd68da0e9e92fab (diff)
s/constructive/constructed in DPRINTF output.
Diffstat (limited to 'usr.sbin/snmpd')
-rw-r--r--usr.sbin/snmpd/ber.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/snmpd/ber.c b/usr.sbin/snmpd/ber.c
index 854018332a7..b61edda95bd 100644
--- a/usr.sbin/snmpd/ber.c
+++ b/usr.sbin/snmpd/ber.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ber.c,v 1.36 2018/06/30 14:05:52 sthen Exp $ */
+/* $OpenBSD: ber.c,v 1.37 2018/07/01 20:03:48 rob Exp $ */
/*
* Copyright (c) 2007, 2012 Reyk Floeter <reyk@openbsd.org>
@@ -1106,7 +1106,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;