svn commit: r264466 - head/lib/libcapsicum

Glen Barber gjb at FreeBSD.org
Mon Apr 14 18:14:09 UTC 2014


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))


More information about the svn-src-all mailing list