aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorPawel Jakub Dawidek <pjd@FreeBSD.org>2013-12-04 00:10:37 +0000
committerPawel Jakub Dawidek <pjd@FreeBSD.org>2013-12-04 00:10:37 +0000
commit53449c98b79d8ab389513450271adfa328e0ab6f (patch)
tree95186ff48b4b6b2ade0a5d76882a3d5ec5e587f5 /sys/kern
parent4a824cd86538f1eb51d7442d86937622d0d8125c (diff)
downloadsrc-53449c98b79d8ab389513450271adfa328e0ab6f.tar.gz
src-53449c98b79d8ab389513450271adfa328e0ab6f.zip
Break the loop once we know we have the SYF_CAPENABLED flag.
Notes
Notes: svn path=/head/; revision=258900
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/makesyscalls.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/kern/makesyscalls.sh b/sys/kern/makesyscalls.sh
index de92a15725a6..87263bf97eb8 100644
--- a/sys/kern/makesyscalls.sh
+++ b/sys/kern/makesyscalls.sh
@@ -326,6 +326,7 @@ s/\$//g
for (cap in capenabled) {
if (funcname == capenabled[cap]) {
flags = "SYF_CAPENABLED";
+ break;
}
}