summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bind/lib/isc/unix/app.c
diff options
context:
space:
mode:
authorflorian <florian@openbsd.org>2020-01-20 18:46:57 +0000
committerflorian <florian@openbsd.org>2020-01-20 18:46:57 +0000
commitc26d1f50849d5b8b87cd96891fdbd206cbe5f132 (patch)
tree62b0c2971a38a0b7de406544c0d340185df02eff /usr.sbin/bind/lib/isc/unix/app.c
parentunifdef threading related defines (diff)
downloadwireguard-openbsd-c26d1f50849d5b8b87cd96891fdbd206cbe5f132.tar.xz
wireguard-openbsd-c26d1f50849d5b8b87cd96891fdbd206cbe5f132.zip
Do not use a message catalog for error messages.
It's not installed anyway. OK millert
Diffstat (limited to 'usr.sbin/bind/lib/isc/unix/app.c')
-rw-r--r--usr.sbin/bind/lib/isc/unix/app.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.sbin/bind/lib/isc/unix/app.c b/usr.sbin/bind/lib/isc/unix/app.c
index 41a40bf537e..52d64942054 100644
--- a/usr.sbin/bind/lib/isc/unix/app.c
+++ b/usr.sbin/bind/lib/isc/unix/app.c
@@ -171,10 +171,7 @@ handle_signal(int sig, void (*handler)(int)) {
sigaction(sig, &sa, NULL) < 0) {
isc__strerror(errno, strbuf, sizeof(strbuf));
UNEXPECTED_ERROR(__FILE__, __LINE__,
- isc_msgcat_get(isc_msgcat, ISC_MSGSET_APP,
- ISC_MSG_SIGNALSETUP,
- "handle_signal() %d setup: %s"),
- sig, strbuf);
+ "handle_signal() %d setup: %s", sig, strbuf);
return (ISC_R_UNEXPECTED);
}