diff options
| author | Archie Cobbs <archie@FreeBSD.org> | 2000-08-22 18:39:08 +0000 |
|---|---|---|
| committer | Archie Cobbs <archie@FreeBSD.org> | 2000-08-22 18:39:08 +0000 |
| commit | 45a3373d361e60dd4f1512d9af9bca81550f5416 (patch) | |
| tree | 0d8f6b08adaca3c9f62b6b39b2162a1c97804ab1 | |
| parent | 23d57eb7284711a45cdb07a76806fb148e8fa5bc (diff) | |
Notes
| -rw-r--r-- | sys/netgraph/ng_ksocket.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netgraph/ng_ksocket.h b/sys/netgraph/ng_ksocket.h index 48cb41fa347b..f8b7d91b34f4 100644 --- a/sys/netgraph/ng_ksocket.h +++ b/sys/netgraph/ng_ksocket.h @@ -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() */ }; |
