Date: Mon, 14 Apr 2014 18:14:09 +0000 (UTC) From: Glen Barber <gjb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r264466 - head/lib/libcapsicum Message-ID: <201404141814.s3EIE9Jw066621@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gjb Date: Mon Apr 14 18:14:09 2014 New Revision: 264466 URL: http://svnweb.freebsd.org/changeset/base/264466 Log: Fix err() usage in libcapsicum(3) example. MFC after: 3 days Sponsored by: The FreeBSD Foundation Modified: head/lib/libcapsicum/libcapsicum.3 Modified: head/lib/libcapsicum/libcapsicum.3 ============================================================================== --- head/lib/libcapsicum/libcapsicum.3 Mon Apr 14 18:07:00 2014 (r264465) +++ head/lib/libcapsicum/libcapsicum.3 Mon Apr 14 18:14:09 2014 (r264466) @@ -27,7 +27,7 @@ .\" .\" $FreeBSD$ .\" -.Dd October 26, 2013 +.Dd April 14, 2014 .Dt LIBCAPSICUM 3 .Os .Sh NAME @@ -253,7 +253,7 @@ limits = nvlist_create(0); nvlist_add_string(limits, "type", "ADDR"); nvlist_add_number(limits, "family", (uint64_t)AF_INET); if (cap_limit_set(capdns, limits) < 0) - err("Unable to limit access to the system.dns service"); + err(1, "Unable to limit access to the system.dns service"); /* Convert IP address in C-string to in_addr. */ if (!inet_aton(ipstr, &ip))
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404141814.s3EIE9Jw066621>