2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

2995. [bug] The Kerberos realm was not being correctly extracted

from the signer's identity. [RT #22770]
This commit is contained in:
Mark Andrews
2010-12-22 02:33:12 +00:00
parent 69c3b3c057
commit 179e028b35
2 changed files with 5 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
2995. [bug] The Kerberos realm was not being correctly extracted
from the signer's identity. [RT #22770]
2994. [port] NetBSD: use pthreads by default on NetBSD >= 5.0, and 2994. [port] NetBSD: use pthreads by default on NetBSD >= 5.0, and
do not use threads on earlier versions. Also kill do not use threads on earlier versions. Also kill
the unproven-pthreads, mit-pthreads, and ptl2 support. the unproven-pthreads, mit-pthreads, and ptl2 support.

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: gssapictx.c,v 1.21 2010/12/19 21:32:35 each Exp $ */ /* $Id: gssapictx.c,v 1.22 2010/12/22 02:33:12 marka Exp $ */
#include <config.h> #include <config.h>
@@ -363,7 +363,7 @@ dst_gssapi_identitymatchesrealmkrb5(dns_name_t *signer, dns_name_t *name,
if (rname == NULL) if (rname == NULL)
return (isc_boolean_false); return (isc_boolean_false);
*rname = '\0'; *rname = '\0';
rname += 2; rname++;
/* /*
* Find the host portion of the signer's name. We do this by * Find the host portion of the signer's name. We do this by