Date: Mon, 19 Sep 2016 03:02:43 +0000 (UTC) From: Ngie Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r305957 - head/usr.bin/soelim Message-ID: <201609190302.u8J32hSv038183@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ngie Date: Mon Sep 19 03:02:43 2016 New Revision: 305957 URL: https://svnweb.freebsd.org/changeset/base/305957 Log: Fix typo introduced in r305949 with the stable/10 bootstrapping logic The header is sys/capability.h, not sys/capabilities.h X-MFC with: r305949 Pointyhat to: bapt Reported by: allanjude, Jenkins Sponsored by: Dell EMC Isilon Modified: head/usr.bin/soelim/soelim.c Modified: head/usr.bin/soelim/soelim.c ============================================================================== --- head/usr.bin/soelim/soelim.c Mon Sep 19 02:25:30 2016 (r305956) +++ head/usr.bin/soelim/soelim.c Mon Sep 19 03:02:43 2016 (r305957) @@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$"); #if __FreeBSD_version > 1001510 #include <sys/capsicum.h> #else -#include <sys/capabilities.h> +#include <sys/capability.h> #endif #include <sys/types.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609190302.u8J32hSv038183>