From 1b238baa74d36f144581deee5f3a1834d1d445bb Mon Sep 17 00:00:00 2001 From: Manuel Bachmann Date: Tue, 22 Dec 2015 09:25:00 +0100 Subject: Fix "no plugins" detection, rename HelloWorld API afb-daemon now gracefully exits if no plugins are present. HelloWorld's API has been renamed to "hello". Signed-off-by: Manuel Bachmann --- plugins/samples/HelloWorld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/samples') diff --git a/plugins/samples/HelloWorld.c b/plugins/samples/HelloWorld.c index 870225b1..2f6dc4d1 100644 --- a/plugins/samples/HelloWorld.c +++ b/plugins/samples/HelloWorld.c @@ -88,7 +88,7 @@ PUBLIC AFB_plugin *pluginRegister () { AFB_plugin *plugin = malloc (sizeof (AFB_plugin)); plugin->type = AFB_PLUGIN_JSON; plugin->info = "Application Framework Binder Service"; - plugin->prefix= "dbus"; + plugin->prefix= "hello"; plugin->apis = pluginApis; return (plugin); }; -- cgit 1.2.3-korg