summaryrefslogtreecommitdiffstats
path: root/usr.sbin/dhcrelay
diff options
context:
space:
mode:
authorbluhm <bluhm@openbsd.org>2017-03-21 12:06:55 +0000
committerbluhm <bluhm@openbsd.org>2017-03-21 12:06:55 +0000
commit9b2c1562932ce8ef5a9c88720f87a65f2e0ed290 (patch)
treee95ec72e2bab693103fbc2539fd53344a59af6c1 /usr.sbin/dhcrelay
parentExport CROSSDIR so that the two users (ld.so and binutils) of that (diff)
downloadwireguard-openbsd-9b2c1562932ce8ef5a9c88720f87a65f2e0ed290.tar.xz
wireguard-openbsd-9b2c1562932ce8ef5a9c88720f87a65f2e0ed290.zip
From a syslog perspective it does not make sense to log fatal and
warn with the same severity. Switch log_warn() to LOG_ERR and keep fatal() at LOG_CRIT. OK reyk@ florian@
Diffstat (limited to 'usr.sbin/dhcrelay')
-rw-r--r--usr.sbin/dhcrelay/log.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/dhcrelay/log.c b/usr.sbin/dhcrelay/log.c
index 4850447d522..8956cd8279b 100644
--- a/usr.sbin/dhcrelay/log.c
+++ b/usr.sbin/dhcrelay/log.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: log.c,v 1.1 2017/02/13 19:15:39 krw Exp $ */
+/* $OpenBSD: log.c,v 1.2 2017/03/21 12:06:55 bluhm Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -105,17 +105,17 @@ log_warn(const char *emsg, ...)
/* best effort to even work in out of memory situations */
if (emsg == NULL)
- logit(LOG_CRIT, "%s", strerror(saved_errno));
+ logit(LOG_ERR, "%s", strerror(saved_errno));
else {
va_start(ap, emsg);
if (asprintf(&nfmt, "%s: %s", emsg,
strerror(saved_errno)) == -1) {
/* we tried it... */
- vlog(LOG_CRIT, emsg, ap);
- logit(LOG_CRIT, "%s", strerror(saved_errno));
+ vlog(LOG_ERR, emsg, ap);
+ logit(LOG_ERR, "%s", strerror(saved_errno));
} else {
- vlog(LOG_CRIT, nfmt, ap);
+ vlog(LOG_ERR, nfmt, ap);
free(nfmt);
}
va_end(ap);
@@ -130,7 +130,7 @@ log_warnx(const char *emsg, ...)
va_list ap;
va_start(ap, emsg);
- vlog(LOG_CRIT, emsg, ap);
+ vlog(LOG_ERR, emsg, ap);
va_end(ap);
}