head	1.4;
access;
symbols
	RELEASE_4_2_0:1.1;
locks; strict;
comment	@# @;


1.4
date	2001.06.24.01.26.27;	author nectar;	state dead;
branches;
next	1.3;

1.3
date	2001.04.19.16.47.38;	author nectar;	state Exp;
branches;
next	1.2;

1.2
date	2000.12.14.16.13.48;	author nectar;	state dead;
branches;
next	1.1;

1.1
date	2000.11.09.23.35.03;	author nectar;	state Exp;
branches;
next	;


desc
@@


1.4
log
@Remove patch  that has  been incorporated  into 0.3f.   By a  quirk of
fate,  it  applied cleanly  anyway,  with  harmless effect  (two  NULL
assignments instead of one).

Noticed by:	assar
@
text
@--- lib/krb5/rd_cred.c.orig	Tue Apr 17 16:03:58 2001
+++ lib/krb5/rd_cred.c	Tue Apr 17 16:05:16 2001
@@@@ -50,6 +50,7 @@@@
     krb5_crypto crypto;
     int i;
 
+    *ret_creds = NULL;
     ret = decode_KRB_CRED(in_data->data, in_data->length, 
 			  &cred, &len);
     if(ret)
@


1.3
log
@Fix an uninitialized pointer dereference in krb5_rd_cred.
@
text
@@


1.2
log
@Update 0.3c -> 0.3d
@
text
@d1 10
a10 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);
@


1.1
log
@= 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.
@
text
@@
