summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ospfd/auth.c
diff options
context:
space:
mode:
authorclaudio <claudio@openbsd.org>2006-03-08 15:35:07 +0000
committerclaudio <claudio@openbsd.org>2006-03-08 15:35:07 +0000
commitaeb9d7c6d0bc15a601bd127fff43d724fe0bc905 (patch)
tree6819a879e96b7d84cdc824271e5f65ee8243f662 /usr.sbin/ospfd/auth.c
parentLast kroute.c commit changed the meaning of the flags so check them correctly. (diff)
downloadwireguard-openbsd-aeb9d7c6d0bc15a601bd127fff43d724fe0bc905.tar.xz
wireguard-openbsd-aeb9d7c6d0bc15a601bd127fff43d724fe0bc905.zip
Spaces and other minor cleanup.
Diffstat (limited to 'usr.sbin/ospfd/auth.c')
-rw-r--r--usr.sbin/ospfd/auth.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/usr.sbin/ospfd/auth.c b/usr.sbin/ospfd/auth.c
index f9373249860..8a1c1d88d34 100644
--- a/usr.sbin/ospfd/auth.c
+++ b/usr.sbin/ospfd/auth.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth.c,v 1.8 2006/02/02 15:11:54 norby Exp $ */
+/* $OpenBSD: auth.c,v 1.9 2006/03/08 15:35:07 claudio Exp $ */
/*
* Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
@@ -59,8 +59,8 @@ auth_validate(void *buf, u_int16_t len, struct iface *iface, struct nbr *nbr)
sizeof(ospf_hdr->auth_key.simple));
if (in_cksum(ospf_hdr, ntohs(ospf_hdr->len))) {
- log_debug("auth_validate: invalid checksum, interface %s",
- iface->name);
+ log_debug("auth_validate: invalid checksum, "
+ "interface %s", iface->name);
return (-1);
}
break;
@@ -150,8 +150,7 @@ auth_gen(struct buf *buf, struct iface *iface)
fatalx("auth_gen: resulting ospf packet too big");
ospf_hdr->len = htons((u_int16_t)buf->wpos);
/* clear auth_key field */
- bzero(ospf_hdr->auth_key.simple,
- sizeof(ospf_hdr->auth_key.simple));
+ bzero(ospf_hdr->auth_key.simple, sizeof(ospf_hdr->auth_key.simple));
switch (iface->auth_type) {
case AUTH_NONE:
@@ -171,8 +170,7 @@ auth_gen(struct buf *buf, struct iface *iface)
iface->crypt_seq_num++;
/* insert plaintext key */
- if ((md = md_list_find(iface, iface->auth_keyid))
- == NULL) {
+ if ((md = md_list_find(iface, iface->auth_keyid)) == NULL) {
log_debug("auth_validate: keyid %d not configured, "
"interface %s", iface->auth_keyid, iface->name);
return (-1);