svn commit: r305957 - head/usr.bin/soelim
Ngie Cooper
ngie at FreeBSD.org
Mon Sep 19 03:02:44 UTC 2016
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>
More information about the svn-src-all
mailing list