summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbluhm <bluhm@openbsd.org>2016-10-16 22:12:50 +0000
committerbluhm <bluhm@openbsd.org>2016-10-16 22:12:50 +0000
commitc572cfa710a368c2fa815a9371225c763a87b50c (patch)
tree31092883f6bac7fd8e09d1ab0e4d0e8cd69c4f54
parentUse the notify name string instead of going via an enum and change (diff)
downloadwireguard-openbsd-c572cfa710a368c2fa815a9371225c763a87b50c.tar.xz
wireguard-openbsd-c572cfa710a368c2fa815a9371225c763a87b50c.zip
Fix trailing whitespace and shorten long lines.
No binary change.
-rw-r--r--usr.sbin/syslogd/privsep.c4
-rw-r--r--usr.sbin/syslogd/ringbuf.c5
-rw-r--r--usr.sbin/syslogd/syslogd.c18
3 files changed, 15 insertions, 12 deletions
diff --git a/usr.sbin/syslogd/privsep.c b/usr.sbin/syslogd/privsep.c
index 305808c3bb2..c2f6d883b28 100644
--- a/usr.sbin/syslogd/privsep.c
+++ b/usr.sbin/syslogd/privsep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: privsep.c,v 1.63 2016/10/16 22:00:14 bluhm Exp $ */
+/* $OpenBSD: privsep.c,v 1.64 2016/10/16 22:12:50 bluhm Exp $ */
/*
* Copyright (c) 2003 Anil Madhavapeddy <anil@recoil.org>
@@ -67,7 +67,7 @@ enum cmd_types {
PRIV_CONFIG_MODIFIED, /* check if config file has been modified */
PRIV_GETADDRINFO, /* resolve host/service names */
PRIV_GETNAMEINFO, /* resolve numeric address into hostname */
- PRIV_DONE_CONFIG_PARSE /* signal that the initial config parse is done */
+ PRIV_DONE_CONFIG_PARSE /* signal that initial config parse is done */
};
static int priv_fd = -1;
diff --git a/usr.sbin/syslogd/ringbuf.c b/usr.sbin/syslogd/ringbuf.c
index a7259f18d07..904a28982f1 100644
--- a/usr.sbin/syslogd/ringbuf.c
+++ b/usr.sbin/syslogd/ringbuf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ringbuf.c,v 1.9 2015/07/06 16:12:16 millert Exp $ */
+/* $OpenBSD: ringbuf.c,v 1.10 2016/10/16 22:12:50 bluhm Exp $ */
/*
* Copyright (c) 2004 Damien Miller
@@ -153,7 +153,8 @@ ringbuf_to_string(char *buf, size_t len, struct ringbuf *rb)
n = rb->len - rb->start;
memcpy(buf, rb->buf + rb->start, MINIMUM(n, copy_len));
if (copy_len > n)
- memcpy(buf + n, rb->buf, MINIMUM(rb->end, copy_len - n));
+ memcpy(buf + n, rb->buf,
+ MINIMUM(rb->end, copy_len - n));
}
buf[copy_len] = '\0';
diff --git a/usr.sbin/syslogd/syslogd.c b/usr.sbin/syslogd/syslogd.c
index ae5184e04cd..7690f2787dd 100644
--- a/usr.sbin/syslogd/syslogd.c
+++ b/usr.sbin/syslogd/syslogd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: syslogd.c,v 1.219 2016/10/16 22:00:14 bluhm Exp $ */
+/* $OpenBSD: syslogd.c,v 1.220 2016/10/16 22:12:50 bluhm Exp $ */
/*
* Copyright (c) 1983, 1988, 1993, 1994
@@ -210,9 +210,9 @@ int MarkInterval = 20 * 60; /* interval between marks in seconds */
int MarkSeq = 0; /* mark sequence number */
int PrivChild = 0; /* Exec the privileged parent process */
int SecureMode = 1; /* when true, speak only unix domain socks */
-int NoDNS = 0; /* when true, will refrain from doing DNS lookups */
+int NoDNS = 0; /* when true, refrain from doing DNS lookups */
int ZuluTime = 0; /* display date and time in UTC ISO format */
-int IncludeHostname = 0; /* include RFC 3164 style hostnames when forwarding */
+int IncludeHostname = 0; /* include RFC 3164 hostnames when forwarding */
int Family = PF_UNSPEC; /* protocol family, may disable IPv4 or IPv6 */
char *bind_host = NULL; /* bind UDP receive socket */
char *bind_port = NULL;
@@ -236,7 +236,7 @@ int tcpbuf_dropped = 0; /* count messages dropped from TCP or TLS */
#define CTL_WRITING_REPLY 2
#define CTL_WRITING_CONT_REPLY 3
int ctl_state = 0; /* What the control socket is up to */
-int membuf_drop = 0; /* logs were dropped in continuous membuf read */
+int membuf_drop = 0; /* logs dropped in continuous membuf read */
/*
* Client protocol NB. all numeric fields in network byte order
@@ -1618,7 +1618,7 @@ logmsg(int pri, char *msg, char *from, int flags)
if (ZuluTime)
flags |= ADDDATE;
} else if (msglen >= 20 &&
- isdigit(msg[0]) && isdigit(msg[1]) && isdigit(msg[2]) &&
+ isdigit(msg[0]) && isdigit(msg[1]) && isdigit(msg[2]) &&
isdigit(msg[3]) && msg[4] == '-' &&
isdigit(msg[5]) && isdigit(msg[6]) && msg[7] == '-' &&
isdigit(msg[8]) && isdigit(msg[9]) && msg[10] == 'T' &&
@@ -1638,7 +1638,7 @@ logmsg(int pri, char *msg, char *from, int flags)
i += 2;
while(i < 7 && msglen >= 1 && isdigit(msg[0])) {
msg++;
- msglen--;
+ msglen--;
i++;
}
}
@@ -1779,7 +1779,8 @@ logmsg(int pri, char *msg, char *from, int flags)
sizeof(f->f_prevhost));
if (msglen < MAXSVLINE) {
f->f_prevlen = msglen;
- strlcpy(f->f_prevline, msg, sizeof(f->f_prevline));
+ strlcpy(f->f_prevline, msg,
+ sizeof(f->f_prevline));
fprintlog(f, flags, (char *)NULL);
} else {
f->f_prevline[0] = 0;
@@ -2438,7 +2439,8 @@ init(void)
break;
case F_USERS:
- for (i = 0; i < MAXUNAMES && *f->f_un.f_uname[i]; i++)
+ for (i = 0; i < MAXUNAMES &&
+ *f->f_un.f_uname[i]; i++)
printf("%s, ", f->f_un.f_uname[i]);
break;