diff options
author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2011-08-13 13:49:11 +0000 |
---|---|---|
committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2011-08-13 13:49:11 +0000 |
commit | 7bf1e98fdec21f551cb374f3d942e72f4677cb17 (patch) | |
tree | a9089dcfaf167bcc92c15423a1eacc748d6511f6 | |
parent | 854d7b9fc8d18430c343707b243eaed949912121 (diff) | |
download | src-7bf1e98fdec21f551cb374f3d942e72f4677cb17.tar.gz src-7bf1e98fdec21f551cb374f3d942e72f4677cb17.zip |
Notes
-rw-r--r-- | usr.sbin/jls/jls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/jls/jls.c b/usr.sbin/jls/jls.c index 6568a1dd79a1..7cbc57421695 100644 --- a/usr.sbin/jls/jls.c +++ b/usr.sbin/jls/jls.c @@ -371,7 +371,7 @@ print_jail(int pflags, int jflags) *(int *)params[5].jp_value); n = 6; #ifdef INET - if (ip4_ok && !strcmp(params[n].jp_name, "ip.addr")) { + if (ip4_ok && !strcmp(params[n].jp_name, "ip4.addr")) { count = params[n].jp_valuelen / sizeof(struct in_addr); for (ai = 0; ai < count; ai++) if (inet_ntop(AF_INET, |