=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/kex.c,v retrieving revision 1.158 retrieving revision 1.159 diff -u -r1.158 -r1.159 --- src/usr.bin/ssh/kex.c 2020/03/13 04:01:56 1.158 +++ src/usr.bin/ssh/kex.c 2020/07/05 23:59:45 1.159 @@ -1,4 +1,4 @@ -/* $OpenBSD: kex.c,v 1.158 2020/03/13 04:01:56 djm Exp $ */ +/* $OpenBSD: kex.c,v 1.159 2020/07/05 23:59:45 djm Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. * @@ -234,7 +234,7 @@ list = tmp; } else if (*list == '-') { /* Remove names from default list */ - if ((*listp = match_filter_blacklist(def, list + 1)) == NULL) { + if ((*listp = match_filter_denylist(def, list + 1)) == NULL) { r = SSH_ERR_ALLOC_FAIL; goto fail; } @@ -271,7 +271,7 @@ goto fail; } free(matching); - if ((matching = match_filter_whitelist(all, cp)) == NULL) { + if ((matching = match_filter_allowlist(all, cp)) == NULL) { r = SSH_ERR_ALLOC_FAIL; goto fail; }