summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2023-03-01 08:17:54 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2023-03-01 08:17:54 +0000
commit8188664a0461f381b8d4ffa8064ea438933a5bdc (patch)
treea465a74a58bd2f27865d7c172f621d912ec186cb /usr.sbin
parent0b377539adb440a059c4ece508717c4b47d16dcb (diff)
Change fatal() to fatalx() since the errno has no meaning here.
OK tb@
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/ldapd/ldape.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ldapd/ldape.c b/usr.sbin/ldapd/ldape.c
index a7882f49d9f..be3a81a036c 100644
--- a/usr.sbin/ldapd/ldape.c
+++ b/usr.sbin/ldapd/ldape.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ldape.c,v 1.36 2021/12/19 12:19:31 claudio Exp $ */
+/* $OpenBSD: ldape.c,v 1.37 2023/03/01 08:17:53 claudio Exp $ */
/*
* Copyright (c) 2009, 2010 Martin Hedenfalk <martin@bzero.se>
@@ -433,7 +433,7 @@ ldape(int debug, int verbose, char *csockpath)
if (tls_configure(l->tls, l->ssl->config)) {
log_warnx("ldape: %s", tls_error(l->tls));
- fatal("ldape: couldn't configure tls");
+ fatalx("ldape: couldn't configure tls");
}
}
}