Author: saces
Date: 2008-02-01 20:53:20 +0000 (Fri, 01 Feb 2008)
New Revision: 17465
Modified:
trunk/freenet/src/freenet/node/fcp/GetPluginInfo.java
Log:
fix a typo #2063, thanks for reporting it.
Modified: trunk/freenet/src/freenet/node/fcp/GetPluginInfo.java
===================================================================
--- trunk/freenet/src/freenet/node/fcp/GetPluginInfo.java 2008-02-01
19:25:56 UTC (rev 17464)
+++ trunk/freenet/src/freenet/node/fcp/GetPluginInfo.java 2008-02-01
20:53:20 UTC (rev 17465)
@@ -44,7 +44,7 @@
PluginInfoWrapper pi =
node.pluginManager.getFCPPluginInfo(plugname);
if (pi == null) {
- handler.outputHandler.queue(new
ProtocolErrorMessage(ProtocolErrorMessage.NO_SUCH_PLUGIN, false, "Plugin '"+
plugname + "' does not exist or os not a FCP plugin", identifier, false));
+ handler.outputHandler.queue(new
ProtocolErrorMessage(ProtocolErrorMessage.NO_SUCH_PLUGIN, false, "Plugin '"+
plugname + "' does not exist or is not a FCP plugin", identifier, false));
} else {
handler.outputHandler.queue(new PluginInfoMessage(pi,
identifier, detailed));
}