diff options
author | mrg <mrg@pkgsrc.org> | 2003-03-14 12:59:03 +0000 |
---|---|---|
committer | mrg <mrg@pkgsrc.org> | 2003-03-14 12:59:03 +0000 |
commit | 90fe911945dd68327b612ba80663f0b8200c395a (patch) | |
tree | 435906f57ef946d6a6a62adfcf05e8b24ff65e33 /chat/ircII/patches | |
parent | 60d53479aea76b1df9c9c7ec5b3e91fb1eb41944 (diff) | |
download | pkgsrc-90fe911945dd68327b612ba80663f0b8200c395a.tar.gz |
update to ircii 20030314. changes since ircII 20021103:
o server's added by /server are no longer removed if they fail to connect.
o SEVERAL REMOTE HOLES FIXED in ctcp, status & other code
o fix ICB /msg to names starting with a /. you can now /msg \/oink to send
a message to "/oink". if you previously were able to /msg \oink you now
have to /msg \\oink.
o arithmetic "|" now works properly
o fix ICB /msg with a user the same name as the channel
o fix ICB group's and user's with comma's in them
o /notify and /timer always go to level crap now
o fix nickname response lossage
o fix $connect() hich was broken recently
o fix "irc -h" which was broken recently
o fix "dcc close raw" which was broken recently
Diffstat (limited to 'chat/ircII/patches')
-rw-r--r-- | chat/ircII/patches/patch-ad | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/chat/ircII/patches/patch-ad b/chat/ircII/patches/patch-ad deleted file mode 100644 index ea8016ffbf2..00000000000 --- a/chat/ircII/patches/patch-ad +++ /dev/null @@ -1,63 +0,0 @@ -$NetBSD: patch-ad,v 1.5 2003/02/18 02:29:15 lukem Exp $ - ---- source/server.c.orig 2002-09-07 02:04:38.000000000 +1000 -+++ source/server.c -@@ -58,7 +58,9 @@ int connect_to_unix _((int, u_char *)); - #include "icb.h" - #include "server.h" - -+#if 0 - static void server_list_garbage_collect _((void)); -+#endif - static void add_to_server_buffer _((int, u_char *)); - static void login_to_server _((int)); - static int connect_to_server_direct _((u_char *, int, u_char *, int)); -@@ -95,6 +97,7 @@ extern int dgets_errno; - - #define DEFAULT_SERVER_VERSION Server2_8 - -+#if 0 - /* - * clean out the SERVER_FAKE entries - */ -@@ -109,6 +112,7 @@ server_list_garbage_collect() - else - i++; - } -+#endif - - /* - * close_server: Given an index into the server list, this closes the -@@ -684,7 +688,7 @@ remove_from_server_list(i) - if (i < from_server) - --from_server; - while ((tmp = traverse_all_windows(&flag)) != NULL) -- if (tmp->server > i) -+ if (tmp->server > i && tmp->server > 0) - tmp->server--; - - bcopy((char *) &server_list[i + 1], (char *) &server_list[i], (number_of_servers - i - 1) * sizeof(Server)); -@@ -1171,7 +1175,9 @@ connect_to_server(server_name, port, nic - server_index = connect_to_server_process(server_name, port, nick, server_index); - else - server_index = connect_to_server_direct(server_name, port, nick, server_index); -+#if 0 - server_list_garbage_collect(); -+#endif - if (server_index) - { - server_list[server_index].attempting_to_connect = 0; -@@ -1423,9 +1429,11 @@ display_server_list() - say("Server list:"); - for (i = 0; i < number_of_servers; i++) - { -- u_char *icb_msg = server_list[i].version == ServerICB ? (u_char *) " (ICB connection)" : empty_string; -- u_char *group_msg, lbuf[BIG_BUFFER_SIZE]; -+ u_char *icb_msg, *group_msg, lbuf[BIG_BUFFER_SIZE]; - -+ if (server_list[i].flags & SERVER_FAKE) -+ continue; -+ icb_msg = server_list[i].version == ServerICB ? (u_char *) " (ICB connection)" : empty_string; - if (server_list[i].server_group) - { - snprintf(CP(lbuf), sizeof lbuf, " [group: %s]", |