Sophie

Sophie

distrib > Mandriva > 2010.2 > i586 > by-pkgid > 77615297b80a869988b51c3dca828459 > files > 1

heimdal-1.3.2-3mdv2010.1.src.rpm

diff -Naur --exclude '*~' heimdal-1.2/lib/kadm5/check-cracklib.pl heimdal-1.2-passwd-check/lib/kadm5/check-cracklib.pl
--- heimdal-1.2/lib/kadm5/check-cracklib.pl	2008-05-23 04:35:28.000000000 +0200
+++ heimdal-1.2-passwd-check/lib/kadm5/check-cracklib.pl	2008-10-27 13:04:10.000000000 +0100
@@ -36,8 +36,8 @@
 use Digest::MD5;
 
 # NEED TO CHANGE THESE TO MATCH YOUR SYSTEM
-my $database = '/usr/lib/cracklib_dict';
-my $historydb = '/var/heimdal/historydb';
+my $database = '/usr/share/cracklib';
+my $historydb = '/var/lib/heimdal/historydb';
 # NEED TO CHANGE THESE TO MATCH YOUR SYSTEM
 
 my %params;
diff -Naur --exclude '*~' heimdal-1.2/lib/kadm5/Makefile.am heimdal-1.2-passwd-check/lib/kadm5/Makefile.am
--- heimdal-1.2/lib/kadm5/Makefile.am	2008-05-23 04:35:28.000000000 +0200
+++ heimdal-1.2-passwd-check/lib/kadm5/Makefile.am	2008-10-27 13:03:31.000000000 +0100
@@ -16,10 +16,10 @@
 check_PROGRAMS = default_keys
 noinst_PROGRAMS = test_pw_quality
 
-noinst_LTLIBRARIES = sample_passwd_check.la
+pkglib_LTLIBRARIES = sample_passwd_check.la
 
 sample_passwd_check_la_SOURCES = sample_passwd_check.c
-sample_passwd_check_la_LDFLAGS = -module
+sample_passwd_check_la_LDFLAGS = -module -avoid-version
 
 libkadm5srv_la_LIBADD = \
 	$(LIB_com_err) ../krb5/libkrb5.la \
diff -Naur --exclude '*~' heimdal-1.2/lib/kadm5/sample_passwd_check.c heimdal-1.2-passwd-check/lib/kadm5/sample_passwd_check.c
--- heimdal-1.2/lib/kadm5/sample_passwd_check.c	2008-05-23 04:35:28.000000000 +0200
+++ heimdal-1.2-passwd-check/lib/kadm5/sample_passwd_check.c	2008-10-27 12:45:33.000000000 +0100
@@ -79,7 +79,7 @@
     strings[1] = NULL;
     memcpy(s, password->data, password->length);
     s[password->length] = '\0';
-    msg = FascistCheck(s, DICTPATH, strings);
+    msg = FascistCheck(s, DICTPATH);
     memset(s, 0, password->length);
     free(s);
     return msg;