summaryrefslogtreecommitdiffstats
path: root/usr.sbin/smtpd/smtp
diff options
context:
space:
mode:
authoreric <eric@openbsd.org>2019-06-12 17:42:53 +0000
committereric <eric@openbsd.org>2019-06-12 17:42:53 +0000
commit9ac7cdfd29175e909d5e6e79fc21d823a762e9c4 (patch)
tree0ea30c433d4c8c77e2ff00ce1833d225edc04461 /usr.sbin/smtpd/smtp
parenttweak previous; (diff)
downloadwireguard-openbsd-9ac7cdfd29175e909d5e6e79fc21d823a762e9c4.tar.xz
wireguard-openbsd-9ac7cdfd29175e909d5e6e79fc21d823a762e9c4.zip
change "ssl" to "tls" in various identifiers.
no functional change. ok gilles@
Diffstat (limited to 'usr.sbin/smtpd/smtp')
-rw-r--r--usr.sbin/smtpd/smtp/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtp/Makefile b/usr.sbin/smtpd/smtp/Makefile
index 24515db9ba6..6708ab6e20d 100644
--- a/usr.sbin/smtpd/smtp/Makefile
+++ b/usr.sbin/smtpd/smtp/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.1 2018/04/26 13:57:13 eric Exp $
+# $OpenBSD: Makefile,v 1.2 2019/06/12 17:42:53 eric Exp $
.PATH: ${.CURDIR}/..
@@ -15,7 +15,7 @@ SRCS+= smtpc.c
SRCS+= ssl.c
SRCS+= ssl_smtpd.c
-CPPFLAGS+= -DIO_SSL
+CPPFLAGS+= -DIO_TLS
LDADD+= -levent -lutil -lssl -lcrypto -lm -lz
DPADD+= ${LIBEVENT} ${LIBUTIL} ${LIBSSL} ${LIBCRYPTO} ${LIBM} ${LIBZ}