Issue 629 - signed bit fields
Summary: signed bit fields
Status: VERIFIED FIXED
Alias: None
Product: OpenLDAP
Classification: Unclassified
Component: slapd (show other issues)
Version: unspecified
Hardware: All All
: --- normal
Target Milestone: ---
Assignee: OpenLDAP project
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2000-07-19 06:52 UTC by peter@gol.com
Modified: 2000-07-20 20:57 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description peter@gol.com 2000-07-19 06:52:40 UTC
Full_Name: Peter Evans
Version: 2.0-DEVEL
OS: IRIX64 6.5
URL: ftp://ftp.openldap.org/incoming/
Submission from: (NULL) (203.216.2.186)



There appear to be a number of definitions like:

"../liblber/lber-int.h"     int             sb_trans_needs_read:1;

which should probably be converted to "unsigned int" since strict compilers
complain about the veracity of having a signed bit field of length 1,
irix mipspro c being one of them.


Comment 1 Kurt Zeilenga 2000-07-20 10:10:09 UTC
Please resubmit as public (don't check private).  Private ITS are meant
for security related issues.
Comment 2 Kurt Zeilenga 2000-07-20 10:10:22 UTC
changed state Open to Closed
Comment 3 Kurt Zeilenga 2000-07-20 20:57:38 UTC
I fixed this... so you can ignore that request to resubmit.
But next time... remember not to click private without a
decent reason.


At 06:52 AM 7/19/00 +0000, peter@gol.com wrote:
>Full_Name: Peter Evans
>Version: 2.0-DEVEL
>OS: IRIX64 6.5
>URL: ftp://ftp.openldap.org/incoming/
>Submission from: (NULL) (203.216.2.186)
>
>
>
>There appear to be a number of definitions like:
>
>"../liblber/lber-int.h"     int             sb_trans_needs_read:1;
>
>which should probably be converted to "unsigned int" since strict compilers
>complain about the veracity of having a signed bit field of length 1,
>irix mipspro c being one of them.