reflect type change of n_net and getnetbyaddr(3).

This commit is contained in:
ume 2005-06-03 04:44:54 +00:00
parent f1ee3b8b53
commit b1d9bded13

View File

@ -51,7 +51,7 @@
.Ft struct netent *
.Fn getnetbyname "const char *name"
.Ft struct netent *
.Fn getnetbyaddr "unsigned long net" "int type"
.Fn getnetbyaddr "uint32_t net" "int type"
.Ft void
.Fn setnetent "int stayopen"
.Ft void
@ -82,7 +82,7 @@ struct netent {
char *n_name; /* official name of net */
char **n_aliases; /* alias list */
int n_addrtype; /* net number type */
unsigned long n_net; /* net number */
uint32_t n_net; /* net number */
};
.Ed
.Pp