diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-08-11 15:52:47 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-08-11 15:52:47 +0000 |
commit | 91624a001611b4aa0be20389001f42f55a9d8235 (patch) | |
tree | ae613bc3b28a8bb2efd5699bcba916018e27ea4b | |
parent | 48fc7ae7361a8fad45e058328d5dc6ebe9355039 (diff) |
whitespace issues like a knife in my eyes
-rw-r--r-- | usr.bin/snmp/smi.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/usr.bin/snmp/smi.c b/usr.bin/snmp/smi.c index 28cb674c38b..637eb36af2f 100644 --- a/usr.bin/snmp/smi.c +++ b/usr.bin/snmp/smi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smi.c,v 1.2 2019/08/11 14:41:20 deraadt Exp $ */ +/* $OpenBSD: smi.c,v 1.3 2019/08/11 15:52:46 deraadt Exp $ */ /* * Copyright (c) 2019 Martijn van Duren <martijn@openbsd.org> @@ -181,7 +181,8 @@ smi_debug_elements(struct ber_element *root) fprintf(stderr, "(%u) encoding %u ", root->be_type, root->be_encoding); - if ((value = smi_print_element(root, 1, smi_os_default, smi_oidl_numeric)) == NULL) + if ((value = smi_print_element(root, 1, smi_os_default, + smi_oidl_numeric)) == NULL) goto invalid; switch (root->be_encoding) { @@ -256,8 +257,7 @@ smi_print_element(struct ber_element *root, int print_hint, if (asprintf(&str, "INTEGER: %s(%d)", d ? "true" : "false", d) == -1) goto fail; - } - else + } else if (asprintf(&str, "%s", d ? "true" : "false") == -1) goto fail; break; @@ -329,8 +329,7 @@ smi_print_element(struct ber_element *root, int print_hint, else if (root->be_type == SNMP_T_COUNTER64) hint = "Counter64: "; } - if (asprintf(&str, "%s%lld", print_hint ? hint : "", v) - == -1) + if (asprintf(&str, "%s%lld", print_hint ? hint : "", v) == -1) goto fail; break; case BER_TYPE_BITSTRING: |