diff options
| author | Jacques Vidrine <nectar@FreeBSD.org> | 2000-11-09 23:35:03 +0000 |
|---|---|---|
| committer | Jacques Vidrine <nectar@FreeBSD.org> | 2000-11-09 23:35:03 +0000 |
| commit | 2cf9350a4efdb46b41d8c5899ad6e871ce10b07f (patch) | |
| tree | b532d123acafead4be241321243f33993c59c901 /security/heimdal/files/patch-cq | |
| parent | d92a5bf8db4de6ce08d35b5f43db6650bf81a9a3 (diff) | |
= Use system libcom_err.
No longer build or install the included libcom_err and compile_et.
= ftpd now uses IP_PORTRANGE* in the same fashion as the system ftpd.
By default, ftpd will now use high port numbers for serving clients
in passive mode.
= Fix segmentation fault in kadmin.
A null pointer dereference that was only tickled when using kadmin
with a kdc that uses LDAP as the backend.
= Fix a search filter in hdb-ldap.c.
A lookup was failing to fetch operational attributes such as
modifiersName.
= Bump PORTREVISION for above changes.
Diffstat (limited to 'security/heimdal/files/patch-cq')
| -rw-r--r-- | security/heimdal/files/patch-cq | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/security/heimdal/files/patch-cq b/security/heimdal/files/patch-cq new file mode 100644 index 000000000000..4c27bdc13cb3 --- /dev/null +++ b/security/heimdal/files/patch-cq @@ -0,0 +1,14 @@ +--- kadmin/get.c.orig Wed Nov 8 12:28:57 2000 ++++ kadmin/get.c Wed Nov 8 12:44:44 2000 +@@ -150,7 +150,10 @@ + printf("%24s: %d\n", "Failed login count", princ->fail_auth_count); + time_t2str(princ->mod_date, buf, sizeof(buf), 1); + printf("%24s: %s\n", "Last modified", buf); +- krb5_unparse_name_fixed(context, princ->mod_name, buf, sizeof(buf)); ++ if (princ->mod_name) ++ krb5_unparse_name_fixed(context, princ->mod_name, buf, sizeof(buf)); ++ else ++ strcpy(buf, "<none>"); + printf("%24s: %s\n", "Modifier", buf); + attributes2str (princ->attributes, buf, sizeof(buf)); + printf("%24s: %s\n", "Attributes", buf); |
