bugzilla-daemon at mindrot.org
2002-Feb-04 19:23 UTC
[Bug 102] New: defines.h modifications for proper UNICOS behavior
http://bugzilla.mindrot.org/show_bug.cgi?id=102 Summary: defines.h modifications for proper UNICOS behavior Product: Portable OpenSSH Version: 3.0.2p1 Platform: Other OS/Version: other Status: NEW Severity: normal Priority: P2 Component: sshd AssignedTo: openssh-unix-dev at mindrot.org ReportedBy: wendyp at cray.com --- defines.h.orig Mon Feb 4 12:32:52 2002 +++ defines.h Mon Feb 4 13:04:07 2002 @@ -161,7 +161,11 @@ typedef short int int16_t; # else # ifdef _CRAY +# if (SIZEOF_SHORT_INT == 4) +typedef short int16_t; +# else typedef long int16_t; +# endif # else # error "16 bit int type not found." # endif /* _CRAY */ @@ -194,7 +198,11 @@ typedef unsigned short int u_int16_t; # else # ifdef _CRAY +# if (SIZEOF_SHORT_INT == 4) +typedef unsigned short u_int16_t; +# else typedef unsigned long u_int16_t; +# endif # else # error "16 bit int type not found." # endif ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.