Closed
Bug 282527
Opened 21 years ago
Closed 21 years ago
certutil -C changes -8 (dns alt name ext) option to -7 (email ext)
Categories
(NSS :: Tools, defect, P2)
Tracking
(Not tracked)
RESOLVED
FIXED
3.10
People
(Reporter: neil.williams, Assigned: wtc)
Details
Attachments
(1 file)
|
540 bytes,
patch
|
neil.williams
:
review+
rrelyea
:
superreview+
|
Details | Diff | Splinter Review |
Attempting to add a DNS alt name extension yields a cert with an extension with
type RFC822Name which is in error. I believe this behavior is explained by the
following 2 lines in AddSubjectAltNames() in nss/cmd/certutil.c
1733 current->type = type;
1734 current->type = certRFC822Name;
| Assignee | ||
Comment 1•21 years ago
|
||
Good catch, Neil. Obviously, one of those
two lines is wrong. I think the second line
should be removed.
| Assignee | ||
Comment 2•21 years ago
|
||
This bug was in Bob Relyea's first
implementation of the feature (bug 122863).
In hindsignt it's obvious that the new
line
current->type = type;
was intended to replace the old line
current->type = certRFC822Name;
Version: unspecified → 3.8
| Assignee | ||
Comment 3•21 years ago
|
||
Attachment #175219 -
Flags: superreview?(rrelyea)
Attachment #175219 -
Flags: review?(neil.williams)
| Reporter | ||
Comment 4•21 years ago
|
||
(In reply to comment #3)
> Created an attachment (id=175219) [edit]
> Proposed patch
>
Reviewed the proposed patch. It does the trick.
| Assignee | ||
Comment 5•21 years ago
|
||
Thanks, Neil. I checked in the patch on
the trunk for NSS 3.10.
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Target Milestone: --- → 3.10
| Reporter | ||
Updated•21 years ago
|
Attachment #175219 -
Flags: review?(neil.williams) → review+
Comment 6•21 years ago
|
||
Setting priorities on unprioritized bugs resolved fixed for NSS 3.10.
Priority: -- → P2
Comment 7•20 years ago
|
||
Comment on attachment 175219 [details] [diff] [review]
Proposed patch
r+ relyea
Attachment #175219 -
Flags: superreview?(rrelyea) → superreview+
You need to log in
before you can comment on or make changes to this bug.
Description
•