From 2212a5838195ac34b6d9f055dadbd3ec0698c467 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Wed, 9 Sep 2009 16:50:36 -0700 Subject: [PATCH] To quote http://developer.apple.com/mac/library/documentation/MacOSX/Conceptual/BPSystemStartup/Articles/StartupItems.html "Table 1 StartupParameters.plist key-value pairs Key Type Value Description String A short description of the startup item, used by administrative tools. Provides Array The names of the services provided by this startup item. Although a startup item can potentially provide multiple services, it is recommended that you limit your startup items to only one service each." Fix "Provides" to be the name of the service, not a description of the helpful operations that it provides. --- ChmodBPF/StartupParameters.plist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChmodBPF/StartupParameters.plist b/ChmodBPF/StartupParameters.plist index 545e2a6..cba2166 100644 --- a/ChmodBPF/StartupParameters.plist +++ b/ChmodBPF/StartupParameters.plist @@ -1,4 +1,4 @@ { Description = "Change BPF permissions"; - Provides = ("Non-root permission to capture or send raw packets"); + Provides = ("ChmodBPF"); }