From 5beeb8a680c17182a0056fa5966bc1f6d8168741 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20Lid=C3=A9n=20Borell?= Date: Mon, 20 Dec 2010 09:32:05 +0100 Subject: Changed the name of the plugin for better compatibility Some web sites check the plugin name instead of the MIME types and expect the BankID plugin to have the name "Nexus Personal". This patch changes the name from "FriBID" to "Nexus Personal". --- plugin/npmain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/npmain.c b/plugin/npmain.c index 670be29..b8b7fba 100644 --- a/plugin/npmain.c +++ b/plugin/npmain.c @@ -55,7 +55,7 @@ NPError NPP_Destroy(NPP instance, NPSavedData **save) { NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value) { switch (variable) { case NPPVpluginNameString: - *((const char**)value) = PACKAGENAME; + *((const char**)value) = "Nexus Personal"; return NPERR_NO_ERROR; case NPPVpluginDescriptionString: *((const char**)value) = PACKAGENAME " version " PACKAGEVERSION; -- cgit v1.2.3