security/heimdal: Chase cracklib dictionary rename from r408137

PR:		213157
Submitted by:	Florian Riehm <mail@friehm.de>
Approved by:	2 year bug anniversary
This commit is contained in:
Tobias Kortkamp 2018-10-11 09:56:41 +00:00
parent aca5e3198e
commit 5e5cdca15f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=481805
2 changed files with 2 additions and 2 deletions

View file

@ -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}/

View file

@ -16,7 +16,7 @@ passwd_check(krb5_context context, krb5_principal principal,
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;
}