make plugin messages consistent with perl and tcl interface messages

This commit is contained in:
berkeviktor@aol.com
2010-06-02 21:59:11 +02:00
parent 285f004e52
commit 71681c889b
3 changed files with 5 additions and 5 deletions

View File

@@ -305,7 +305,7 @@ xchat_plugin_deinit (xchat_plugin *plugin_handle)
Sleep (1000);
}
xchat_print(ph, "DNS plugin unloaded successfully!\n");
xchat_print(ph, "DNS plugin unloaded\n");
return 1;
}
@@ -333,7 +333,7 @@ xchat_plugin_init
xchat_hook_command(ph, "DNS", XCHAT_PRI_LOW, dns_cmd_cb, HELP, 0);
xchat_print(ph, "DNS plugin loaded successfully!\n");
xchat_print(ph, "DNS plugin loaded\n");
return 1; /* return 1 for success */
}