svn commit: r223224 - head/usr.sbin/jls
Bjoern A. Zeeb
bz at FreeBSD.org
Sat Jun 18 09:46:40 UTC 2011
Author: bz
Date: Sat Jun 18 09:46:39 2011
New Revision: 223224
URL: http://svn.freebsd.org/changeset/base/223224
Log:
Add a missing ',' to separate arguments lost for r222465 only found in
case a complete world is built without INET support.
MFC after: 10 days
X-MFC with: 222465
Modified:
head/usr.sbin/jls/jls.c
Modified: head/usr.sbin/jls/jls.c
==============================================================================
--- head/usr.sbin/jls/jls.c Sat Jun 18 09:34:03 2011 (r223223)
+++ head/usr.sbin/jls/jls.c Sat Jun 18 09:46:39 2011 (r223224)
@@ -404,7 +404,7 @@ print_jail(int pflags, int jflags)
(!ip4_ok || params[1].jp_valuelen == 0) ? "-"
: inet_ntoa(*(struct in_addr *)params[1].jp_value),
#else
- "-"
+ "-",
#endif
(char *)params[2-!ip4_ok].jp_value,
(char *)params[3-!ip4_ok].jp_value);
More information about the svn-src-all
mailing list