diff options
author | berkeviktor@aol.com <berkeviktor@aol.com> | 2010-05-29 16:20:22 +0200 |
---|---|---|
committer | berkeviktor@aol.com <berkeviktor@aol.com> | 2010-05-29 16:20:22 +0200 |
commit | 57373d7b3a13cd70a04dcfe427a6cf9d104c1c7e (patch) | |
tree | 347b3fe8c0b0c800cf8464d7ce9f3911a47fddcd /plugins/dns | |
parent | 97b048ca410c7550f461057dee0ef6dae80c8868 (diff) |
add notification messages for DNS plugin
Diffstat (limited to 'plugins/dns')
-rw-r--r-- | plugins/dns/plugin-dns.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/dns/plugin-dns.c b/plugins/dns/plugin-dns.c index fdefd490..44d53691 100644 --- a/plugins/dns/plugin-dns.c +++ b/plugins/dns/plugin-dns.c @@ -304,6 +304,8 @@ xchat_plugin_deinit (xchat_plugin *plugin_handle) { Sleep (1000); } + + xchat_print(ph, "DNS plugin unloaded successfully!\n"); return 1; } @@ -331,5 +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"); + return 1; /* return 1 for success */ } |