1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 14:56:39 +02:00

Code cleanup: renamed IRC functions to have uniform name (with prefix based on source name), moved some functions

This commit is contained in:
Sebastien Helleu
2007-05-11 14:59:12 +00:00
parent 7579529d94
commit bee62989f6
64 changed files with 3702 additions and 3658 deletions
+2 -2
View File
@@ -90,7 +90,7 @@ plugin_find_server_channel (char *server, char *channel,
{
if (server && server[0])
{
(*ptr_server) = server_search (server);
(*ptr_server) = irc_server_search (server);
if (!(*ptr_server))
return -1;
}
@@ -104,7 +104,7 @@ plugin_find_server_channel (char *server, char *channel,
if (channel && channel[0])
{
if ((*ptr_server))
(*ptr_channel) = channel_search ((*ptr_server), channel);
(*ptr_channel) = irc_channel_search ((*ptr_server), channel);
if (!(*ptr_channel))
return -1;
}