diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-24 00:38:41 +0100 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-24 00:38:41 +0100 |
commit | 06d422d1de5c505366f6a029d8af85548c2b646f (patch) | |
tree | 8d37559bff36bcb5237a203b9ac874286fdfe028 /plugins/samples/HelloWorld.c | |
parent | c6853a55ca911415e6851de27621b7022a665933 (diff) |
Fixed Client Session Context by Plugin
Diffstat (limited to 'plugins/samples/HelloWorld.c')
-rw-r--r-- | plugins/samples/HelloWorld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/samples/HelloWorld.c b/plugins/samples/HelloWorld.c index 2f6dc4d1..d9106920 100644 --- a/plugins/samples/HelloWorld.c +++ b/plugins/samples/HelloWorld.c @@ -87,7 +87,7 @@ STATIC AFB_restapi pluginApis[]= { PUBLIC AFB_plugin *pluginRegister () { AFB_plugin *plugin = malloc (sizeof (AFB_plugin)); plugin->type = AFB_PLUGIN_JSON; - plugin->info = "Application Framework Binder Service"; + plugin->info = "Minimal Hello World Sample"; plugin->prefix= "hello"; plugin->apis = pluginApis; return (plugin); |