diff options
author | brian <brian@FreeBSD.org> | 2004-07-14 13:31:17 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 2004-07-14 13:31:17 +0000 |
commit | d403dd49eedd8004eb0512ad354328afae418e0c (patch) | |
tree | c5b1077cfcc27953d28bf3e14931098c03709f8a | |
parent | 38fd4ed96d4252a0b1090f40179458b6fb1caec4 (diff) | |
download | FreeBSD-src-d403dd49eedd8004eb0512ad354328afae418e0c.zip FreeBSD-src-d403dd49eedd8004eb0512ad354328afae418e0c.tar.gz |
Remove a stray backslash
-rw-r--r-- | usr.sbin/ppp/radius.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ppp/radius.c b/usr.sbin/ppp/radius.c index 57ed21b..c66965f 100644 --- a/usr.sbin/ppp/radius.c +++ b/usr.sbin/ppp/radius.c @@ -1082,7 +1082,7 @@ radius_Account(struct radius *r, struct radacct *ac, struct datalink *dl, switch (ac->proto) { case PROTO_IPCP: if (rad_put_addr(r->cx.rad, RAD_FRAMED_IP_ADDRESS, - ac->peer.ip.addr) != 0 || \ + ac->peer.ip.addr) != 0 || rad_put_addr(r->cx.rad, RAD_FRAMED_IP_NETMASK, ac->peer.ip.mask) != 0) { log_Printf(LogERROR, "rad_put: %s\n", rad_strerror(r->cx.rad)); |