Skip Menu |
 

Download (untitled) / with headers
text/plain 3.1KiB
From Ann-Marie.Westgate@Sun.COM Wed Jun 20 07:05:43 2001
Received: from fort-point-station.mit.edu (FORT-POINT-STATION.MIT.EDU [18.72.0.53])
by rt-11.mit.edu (8.9.3/8.9.3) with ESMTP id HAA29454
for <bugs@RT-11.mit.edu>; Wed, 20 Jun 2001 07:05:42 -0400 (EDT)
Received: from mercury.Sun.COM (mercury.Sun.COM [192.9.25.1])
by fort-point-station.mit.edu (8.9.2/8.9.2) with ESMTP id HAA26286
for <krb5-bugs@mit.edu>; Wed, 20 Jun 2001 07:05:41 -0400 (EDT)
Received: from ireserver.Ireland.Sun.COM ([129.156.220.7])
by mercury.Sun.COM (8.9.3+Sun/8.9.3) with ESMTP id EAA15684
for <krb5-bugs@mit.edu>; Wed, 20 Jun 2001 04:05:39 -0700 (PDT)
Received: from dbl-ray-3 (dbl-ray-3 [129.156.237.102])
by ireserver.Ireland.Sun.COM (8.8.8+Sun/8.8.8/ENSMAIL,v2.1p1) with SMTP id MAA05060;
Wed, 20 Jun 2001 12:05:38 +0100 (BST)
Message-Id: <200106201105.MAA05060@ireserver.Ireland.Sun.COM>
Date: Wed, 20 Jun 2001 12:05:39 +0100 (BST)
From: Ann-marie Westgate - Sun Ireland - SPP - Software Engineer <Ann-Marie.Westgate@Sun.COM>
Reply-To: Ann-marie Westgate - Sun Ireland - SPP - Software Engineer <Ann-Marie.Westgate@Sun.COM>
To: krb5-bugs@mit.edu
Cc: ann-marie.westgate@ireland.sun.com
Subject: src/lib/gssapi/krb5/util_ctxsetup.c

Show quoted text
>Number: 971
>Category: krb5-libs
>Synopsis: src/lib/gssapi/krb5/util_ctxsetup.c
>Confidential: yes
>Severity: serious
>Priority: medium
>Responsible: raeburn
>State: feedback
>Class: sw-bug
>Submitter-Id: unknown
>Arrival-Date: Wed Jun 20 07:06:01 EDT 2001
>Last-Modified: Fri Jun 22 23:16:44 EDT 2001
>Originator: Ann-marie Westgate <Ann-Marie.Westgate@Sun.COM>
>Organization:
Sun Ireland
Show quoted text
>Release: krb5-1.2.1
>Environment:
>Description:
src/lib/gssapi/krb5/util_ctxsetup.c

Code is broken, for loop has no effect:


berkeley:/export/home/Kerberos/mit/krb5-1.2.1/src/lib/gssapi/krb5 50 % diff -c
util_ctxsetup.c util_ctxsetup.c.mine
*** util_ctxsetup.c Fri Jun 30 03:27:56 2000
--- util_ctxsetup.c.mine Wed Jun 20 12:06:07 2001
***************
*** 106,113 ****
if (options[i].option_id = opt_id) {
options[i].length = field_length;
options[i].data = ptr;
}
- break;
}

ptr += field_length;
--- 106,113 ----
if (options[i].option_id = opt_id) {
options[i].length = field_length;
options[i].data = ptr;
+ break;
}
}

ptr += field_length;

Show quoted text
>How-To-Repeat:
>Fix:
>Audit-Trail:

Responsible-Changed-From-To: gnats-admin->raeburn
Responsible-Changed-By: raeburn
Responsible-Changed-When: Fri Jun 22 23:10:17 2001
Responsible-Changed-Why:

I'll take it...

State-Changed-From-To: open-feedback
State-Changed-By: raeburn
State-Changed-When: Fri Jun 22 23:10:29 2001
State-Changed-Why:

Ezra's already fixed it.



From: Ken Raeburn <raeburn@MIT.EDU>
To: Ann-Marie.Westgate@Sun.COM
Cc: krb5-bugs@MIT.EDU
Subject: Re: krb5-libs/971: src/lib/gssapi/krb5/util_ctxsetup.c
Date: Fri, 22 Jun 2001 23:11:41 -0400

Thanks, this one's just recently been fixed in our sources.
(By the way, the assignment in the 'if' test there should've been an
equality test, too.)

Ken
Show quoted text
>Unformatted:
closing; was checked in on trunk a while ago. It looks like it's in
unused code anyway.