summaryrefslogtreecommitdiff
path: root/src/irc/irc-server.c
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2005-05-05 16:26:34 +0000
committerSebastien Helleu <flashcode@flashtux.org>2005-05-05 16:26:34 +0000
commitc8ad30020ba80fa1a27d21385a6f2869830b91c0 (patch)
tree589fcc057b4641a348a0b2ca7277770069a107c1 /src/irc/irc-server.c
parentc6fc8bd1479a046e5a0e9ba5f344ebfdc9ce4bd1 (diff)
downloadweechat-c8ad30020ba80fa1a27d21385a6f2869830b91c0.zip
Improved Perl interface and some changes in Python:
- function "print_with_channel" was removed - function "command" now runs weechat command or send text to channel - Perl functions are now called with weechat::name (instead of IRC::name) - IRC::xxx functions are still active for compatibility with old scripts
Diffstat (limited to 'src/irc/irc-server.c')
-rw-r--r--src/irc/irc-server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/irc-server.c b/src/irc/irc-server.c
index 566dceed1..ec7312739 100644
--- a/src/irc/irc-server.c
+++ b/src/irc/irc-server.c
@@ -323,7 +323,7 @@ server_new (char *name, int autoconnect, int autoreconnect, int autoreconnect_de
return NULL;
#ifdef DEBUG
- wee_log_printf ("creating new server (name:%s, address:%s, port:%d, pwd:%s, "
+ wee_log_printf ("Creating new server (name:%s, address:%s, port:%d, pwd:%s, "
"nick1:%s, nick2:%s, nick3:%s, username:%s, realname:%s, "
"command:%s, autojoin:%s, autorejoin:%s)\n",
name, address, port, (password) ? password : "",
@@ -843,7 +843,7 @@ server_connect (t_irc_server *server)
gui_printf (server->buffer,
_("%s: connecting to %s:%d...\n"),
PACKAGE_NAME, server->address, server->port);
- wee_log_printf (_("connecting to server %s:%d...\n"),
+ wee_log_printf (_("Connecting to server %s:%d...\n"),
server->address, server->port);
/* close any opened connection and kill child process if running */