"u_int32_t" should have been "int32_t".

This commit is contained in:
Archie Cobbs 2000-08-10 22:51:26 +00:00
parent 7133ac27ef
commit cac2a7de76
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=64511

View File

@ -49,8 +49,8 @@
/* For NGM_KSOCKET_SETOPT and NGM_KSOCKET_GETOPT control messages */
struct ng_ksocket_sockopt {
u_int32_t level; /* second arg of [gs]etsockopt() */
u_int32_t name; /* third arg of [gs]etsockopt() */
int32_t level; /* second arg of [gs]etsockopt() */
int32_t name; /* third arg of [gs]etsockopt() */
u_char value[0]; /* fourth arg of [gs]etsockopt() */
};