summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-05-08 16:39:57 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-05-08 16:39:57 +0000
commit70e624e366f7b8cbc1bce456459e2509f96fc703 (patch)
tree17f3f746db3381a82e2e434716fc619d20671f05 /cpukit/libnetworking
parent2007-05-08 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-70e624e366f7b8cbc1bce456459e2509f96fc703.tar.bz2
2007-05-08 Ralf Corsépius <ralf.corsepius@rtems.org>
* libnetworking/netdb.h: Change netent->n_net to uint32_t to comply with SUSv3.
Diffstat (limited to 'cpukit/libnetworking')
-rw-r--r--cpukit/libnetworking/netdb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libnetworking/netdb.h b/cpukit/libnetworking/netdb.h
index 3a12fda74d..50a168fe6d 100644
--- a/cpukit/libnetworking/netdb.h
+++ b/cpukit/libnetworking/netdb.h
@@ -105,7 +105,7 @@ struct netent {
char *n_name; /* official name of net */
char **n_aliases; /* alias list */
int n_addrtype; /* net address type */
- unsigned long n_net; /* network # */
+ uint32_t n_net; /* network # */
};
struct servent {