diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2017-03-21 12:06:57 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2017-03-21 12:06:57 +0000 |
commit | 04af613120330d37d48dadb9d2330ebac4e08cd4 (patch) | |
tree | fc625f356794a5765aed3e7dffc2ef781c78b5f8 /usr.sbin/dhcrelay/log.c | |
parent | 14a59e429dd34744b20b8917dd19908a2ac59876 (diff) |
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/log.c')
-rw-r--r-- | usr.sbin/dhcrelay/log.c | 12 |
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); } |