aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/bsnmpd
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2020-01-31 18:09:27 +0000
committerDimitry Andric <dim@FreeBSD.org>2020-01-31 18:09:27 +0000
commit303c0aad7d27c15932addb4bbe43f969ae212755 (patch)
tree466bba61836c6ddff94806247c2cd944ef6a7e59 /usr.sbin/bsnmpd
parent3fd49cf90e648aebb06fe37f879dcb96f4f93708 (diff)
downloadsrc-303c0aad7d27c15932addb4bbe43f969ae212755.tar.gz
src-303c0aad7d27c15932addb4bbe43f969ae212755.zip
Fix the following -Werror warning from clang 10.0.0 in bsnmpd:
usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c:1661:4: error: misleading indentation; statement is not part of the previous 'else' [-Werror,-Wmisleading-indentation] return (-1); ^ usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c:1658:5: note: previous statement is here } else ^ The intent was to group the return statement with the previous syslog() call. MFC after: 3 days
Notes
Notes: svn path=/projects/clang1000-import/; revision=357339
Diffstat (limited to 'usr.sbin/bsnmpd')
-rw-r--r--usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c b/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c
index d20f7bccfe26..a14ab5841dfa 100644
--- a/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c
+++ b/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c
@@ -1655,10 +1655,11 @@ altq_is_enabled(int pfdev)
syslog(LOG_INFO, "No ALTQ support in kernel\n"
"ALTQ related functions disabled\n");
return (0);
- } else
+ } else {
syslog(LOG_ERR, "DIOCGETALTQS returned an error: %s",
strerror(errno));
return (-1);
+ }
}
return (1);
}