unbreak FLAVOR=net of conserver; libressl doesn't support :@SECLEVEL=0

found the hard way by henning@
This commit is contained in:
sthen 2019-02-25 19:53:16 +00:00
parent a06828f68f
commit ad160d29ab
2 changed files with 14 additions and 4 deletions

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.64 2019/01/25 11:35:54 sthen Exp $
# $OpenBSD: Makefile,v 1.65 2019/02/25 19:53:16 sthen Exp $
COMMENT= manage remote serial consoles via TCP/IP
V= 8.2.2
REVISION= 2
REVISION= 3
DISTNAME= conserver-$V
CATEGORIES= comms

View File

@ -1,6 +1,7 @@
$OpenBSD: patch-conserver_main_c,v 1.2 2018/05/29 13:54:05 sthen Exp $
$OpenBSD: patch-conserver_main_c,v 1.3 2019/02/25 19:53:16 sthen Exp $
enable "setproctitle" option by default, for more information ps listings
- enable "setproctitle" option by default, for more information ps listings
- libressl doesn't support @SECLEVEL=0
Index: conserver/main.c
--- conserver/main.c.orig
@ -14,3 +15,12 @@ Index: conserver/main.c
#endif
#if HAVE_OPENSSL
, (char *)0, FLAGTRUE, FLAGFALSE, (char *)0
@@ -363,7 +363,7 @@ SetupSSL(void)
}
ciphers = "ALL:!LOW:!EXP:!MD5:!aNULL:@STRENGTH";
} else {
- ciphers = "ALL:aNULL:!LOW:!EXP:!MD5:@STRENGTH" CIPHER_SEC0;
+ ciphers = "ALL:aNULL:!LOW:!EXP:!MD5:@STRENGTH";
}
if (config->sslcacertificatefile != (char *)0) {
STACK_OF(X509_NAME) * cert_names;