Closed
Bug 1371249
Opened 8 years ago
Closed 8 years ago
use stricter prototype for SSL_SignatureMaxCount
Categories
(NSS :: Libraries, enhancement)
NSS
Libraries
Tracking
(Not tracked)
RESOLVED
FIXED
3.32
People
(Reporter: ueno, Unassigned)
Details
Attachments
(1 file)
|
1021 bytes,
patch
|
KaiE
:
review+
|
Details | Diff | Splinter Review |
Currently SSL_SignatureMaxCount() is declared as:
SSL_IMPORT unsigned int SSL_SignatureMaxCount();
in ssl.h. This causes a warning if -Wstrict-prototype is used:
/usr/include/nss3/ssl.h:392:1: warning: function declaration isn’t a prototype [-Wstrict-prototypes]
This can be avoided by providing explicit argument list as:
SSL_IMPORT unsigned int SSL_SignatureMaxCount(void);
This was originally reported as:
https://bugzilla.redhat.com/show_bug.cgi?id=1387086
| Reporter | ||
Updated•8 years ago
|
Attachment #8875683 -
Flags: review?(kaie)
Comment 1•8 years ago
|
||
Comment on attachment 8875683 [details] [diff] [review]
ssl-strict-proto.patch
r=kaie
Attachment #8875683 -
Flags: review?(kaie) → review+
Comment 2•8 years ago
|
||
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → FIXED
Target Milestone: --- → 3.32
You need to log in
before you can comment on or make changes to this bug.
Description
•