summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Short <zul@gentoo.org>2003-11-22 02:00:16 +0000
committerChuck Short <zul@gentoo.org>2003-11-22 02:00:16 +0000
commit76a1191bfea9596b558e138f2af2cb39af1af5bd (patch)
tree779db9771f50c5180def7d77c2cacf95c9acbcff /net-irc/ezbounce/files
parentInitial release, closes #31619. (diff)
downloadgentoo-2-76a1191bfea9596b558e138f2af2cb39af1af5bd.tar.gz
gentoo-2-76a1191bfea9596b558e138f2af2cb39af1af5bd.tar.bz2
gentoo-2-76a1191bfea9596b558e138f2af2cb39af1af5bd.zip
Initial release, closes #31619.
Diffstat (limited to 'net-irc/ezbounce/files')
-rw-r--r--net-irc/ezbounce/files/digest-ezbounce-1.04a1
-rw-r--r--net-irc/ezbounce/files/ezbounce-1.04a-crash-fix.patch22
2 files changed, 23 insertions, 0 deletions
diff --git a/net-irc/ezbounce/files/digest-ezbounce-1.04a b/net-irc/ezbounce/files/digest-ezbounce-1.04a
new file mode 100644
index 000000000000..f1fdd329d49c
--- /dev/null
+++ b/net-irc/ezbounce/files/digest-ezbounce-1.04a
@@ -0,0 +1 @@
+MD5 f214fbd8ec1d95981639c9e1087436cb ezbounce-1.04a.tar.gz 189147
diff --git a/net-irc/ezbounce/files/ezbounce-1.04a-crash-fix.patch b/net-irc/ezbounce/files/ezbounce-1.04a-crash-fix.patch
new file mode 100644
index 000000000000..34141fa8611b
--- /dev/null
+++ b/net-irc/ezbounce/files/ezbounce-1.04a-crash-fix.patch
@@ -0,0 +1,22 @@
+diff -ur --new-file ezbounce-1.04a-orig/src/commands.cpp ezbounce-1.04a/src/commands.cpp
+--- ezbounce-1.04a-orig/src/commands.cpp 2003-04-26 18:15:41.000000000 -0500
++++ ezbounce-1.04a/src/commands.cpp 2003-07-01 00:59:51.000000000 -0500
+@@ -1193,7 +1193,7 @@
+ c = i.next();
+ if (c->checkf(DETACHED))
+ {
+- char buff[200], timebuff[15];
++ char timebuff[15];
+ if (!hShown)
+ {
+ cprintf("Current detached sessions for user %s:\n", u->name);
+@@ -1201,8 +1201,7 @@
+ hShown = 1;
+ }
+ duration(ircproxy_time() - c->detach_time, 0, timebuff, sizeof(timebuff));
+- sprintf(buff,"%-3d %-20s %-20s %s\n", ++idx, c->uinfo.irc->nick, c->uinfo.server, timebuff);
+- cprintf(buff);
++ cprintf("%-3d %-20s %-20s %s\n", ++idx, c->uinfo.irc->nick, c->uinfo.server, timebuff);
+ }
+ }
+ if (!hShown)