summary refs log tree commit diff stats
path: root/plugins/xsasl/xsasl.c
diff options
context:
space:
mode:
authorBerke Viktor <berkeviktor@aol.com>2012-01-10 08:28:03 +0100
committerBerke Viktor <berkeviktor@aol.com>2012-01-10 08:28:03 +0100
commit6a0aa95fee2de466dfc925db7cc475ec538a4a88 (patch)
tree5819807b346e6bfef4360bc43d642f681acfd8e4 /plugins/xsasl/xsasl.c
parentc65313f6d647434e6d0bcb5d240d9cc25af5ea4d (diff)
update command names
Diffstat (limited to 'plugins/xsasl/xsasl.c')
-rw-r--r--plugins/xsasl/xsasl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/xsasl/xsasl.c b/plugins/xsasl/xsasl.c
index c8f452a0..c902c7b6 100644
--- a/plugins/xsasl/xsasl.c
+++ b/plugins/xsasl/xsasl.c
@@ -180,7 +180,7 @@ sasl_cmd_cb (char *word[], char *word_eol[], void *userdata)
 
 	if (!login || !password || !network || !*login || !*password || !*network)
 	{
-		xchat_printf (ph, "Usage: SASL <login> <password> <network>, enable SASL authentication for given network\n");
+		xchat_printf (ph, "Usage: XSASL <login> <password> <network>, enable SASL authentication for given network\n");
 		return XCHAT_EAT_ALL;
 	}
 
@@ -213,7 +213,7 @@ xchat_plugin_init (xchat_plugin *plugin_handle, char **plugin_name, char **plugi
 	*plugin_desc = desc;
 	*plugin_version = version;
 
-	xchat_hook_command (ph, "XSASL", XCHAT_PRI_NORM, sasl_cmd_cb, "Usage: SASL <login> <password> <network>, enable SASL authentication for given network", 0);
+	xchat_hook_command (ph, "XSASL", XCHAT_PRI_NORM, sasl_cmd_cb, "Usage: XSASL <login> <password> <network>, enable SASL authentication for given network", 0);
 	xchat_hook_print (ph, "Connected", XCHAT_PRI_NORM, connect_cb, NULL);
 	/* xchat_hook_print (ph, "Disconnected", XCHAT_PRI_NORM, disconnect_cb, NULL); */
 	xchat_hook_server (ph, "CAP", XCHAT_PRI_NORM, cap_cb, NULL);