summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd/auth.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-05-09 11:23:14 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-05-09 11:23:14 +0000
commit890d2c6326dbccadc04955b764256116f7b9826b (patch)
tree40d755c8678f747319f470b40a3e127c89fc4425 /cpukit/pppd/auth.c
parent2007-05-08 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-890d2c6326dbccadc04955b764256116f7b9826b.tar.bz2
2007-05-09 Ralf Corsépius <ralf.corsepius@rtems.org>
PR 1243 * pppd/auth.c (set_allowed_addrs): Remove bogus dereference.
Diffstat (limited to '')
-rw-r--r--cpukit/pppd/auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/pppd/auth.c b/cpukit/pppd/auth.c
index cb708632cf..b92d692f16 100644
--- a/cpukit/pppd/auth.c
+++ b/cpukit/pppd/auth.c
@@ -968,7 +968,7 @@ set_allowed_addrs(unit, addrs, opts)
} else {
np = getnetbyname (ptr_word);
if (np != NULL && np->n_addrtype == AF_INET) {
- a = htonl (*(u_int32_t *)np->n_net);
+ a = htonl (np->n_net);
if (ptr_mask == NULL) {
/* calculate appropriate mask for net */
ah = ntohl(a);