summaryrefslogtreecommitdiffstats
path: root/net-im/gaim/files
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2004-06-27 05:56:55 +0000
committermarcus <marcus@FreeBSD.org>2004-06-27 05:56:55 +0000
commit2408f504b7faea2f41bac36a31626c431fcb441e (patch)
treeb6728a14057c2951b62d6f9fbcd12b50bb456f45 /net-im/gaim/files
parentbb46e4ca26a494417534b78e810c5e7fafbbf6d3 (diff)
downloadFreeBSD-ports-2408f504b7faea2f41bac36a31626c431fcb441e.zip
FreeBSD-ports-2408f504b7faea2f41bac36a31626c431fcb441e.tar.gz
Update to 0.79. See http://gaim.sourceforge.net/ChangeLog for the usual list
of goodies.
Diffstat (limited to 'net-im/gaim/files')
-rw-r--r--net-im/gaim/files/patch-src::util.c19
-rw-r--r--net-im/gaim/files/patch-src_protocols_gg_libgg.h12
-rw-r--r--net-im/gaim/files/patch-src_protocols_silc_chat.c11
3 files changed, 0 insertions, 42 deletions
diff --git a/net-im/gaim/files/patch-src::util.c b/net-im/gaim/files/patch-src::util.c
deleted file mode 100644
index f573f29..0000000
--- a/net-im/gaim/files/patch-src::util.c
+++ /dev/null
@@ -1,19 +0,0 @@
---- src/util.c.orig Wed May 26 19:24:44 2004
-+++ src/util.c Sun May 30 17:57:02 2004
-@@ -2328,9 +2328,14 @@
- static size_t
- parse_content_len(const char *data, size_t data_len)
- {
-- size_t content_len = 0;
-+ int content_len = 0;
-+ char *tmp;
-
-- sscanf(data, "Content-Length: %d", (int *)&content_len);
-+ tmp = g_malloc(data_len + 1);
-+ memcpy(tmp, data, data_len);
-+ tmp[data_len] = '\0';
-+ sscanf(tmp, "Content-Length: %d", &content_len);
-+ g_free(tmp);
-
- return content_len;
- }
diff --git a/net-im/gaim/files/patch-src_protocols_gg_libgg.h b/net-im/gaim/files/patch-src_protocols_gg_libgg.h
deleted file mode 100644
index 7cb0f3e..0000000
--- a/net-im/gaim/files/patch-src_protocols_gg_libgg.h
+++ /dev/null
@@ -1,12 +0,0 @@
---- src/protocols/gg/libgg.h.orig Sun May 30 18:01:35 2004
-+++ src/protocols/gg/libgg.h Sun May 30 18:01:58 2004
-@@ -29,7 +29,9 @@
- #define INADDR_NONE 0xffffffff
- #endif
-
-+#ifdef HAVE_STDINT_H
- #include <stdint.h>
-+#endif
- #include <sys/types.h>
-
- /*
diff --git a/net-im/gaim/files/patch-src_protocols_silc_chat.c b/net-im/gaim/files/patch-src_protocols_silc_chat.c
deleted file mode 100644
index 6038346..0000000
--- a/net-im/gaim/files/patch-src_protocols_silc_chat.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/protocols/silc/chat.c.orig Wed Jun 2 14:36:55 2004
-+++ src/protocols/silc/chat.c Wed Jun 2 14:37:03 2004
-@@ -1081,7 +1081,7 @@
- do both 1 and 2 with default keys. */
-
- /* Call JOIN */
-- if (passphrase)
-+ if (passphrase && strlen(passphrase))
- silc_client_command_call(client, conn, NULL, "JOIN",
- channel, passphrase, "-auth", "-founder", NULL);
- else
OpenPOWER on IntegriCloud