Index: Makefile =================================================================== --- Makefile (revision 481789) +++ Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= heimdal PORTVERSION= 7.5.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security ipv6 MASTER_SITES= https://github.com/heimdal/heimdal/releases/download/${DISTNAME}/ Index: files/kpasswdd-cracklib.c =================================================================== --- files/kpasswdd-cracklib.c (revision 481789) +++ files/kpasswdd-cracklib.c (working copy) @@ -16,7 +16,7 @@ return "out of memory"; memcpy(p, password->data, password->length); p[password->length] = '\0'; - result = FascistCheck(p, LOCALBASE "/libdata/cracklib/pw_dict"); + result = FascistCheck(p, LOCALBASE "/libdata/cracklib/cracklib-words"); free(p); return result; }