summaryrefslogtreecommitdiff
path: root/net/gaim/files/patch-src::proxy.c
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2004-04-05 04:18:39 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2004-04-05 04:18:39 +0000
commit7e249e103b9024b5d95bcdfdf636810aac7b2559 (patch)
treefe918c553575ae0dfa721d10a9c1eeba16cd836f /net/gaim/files/patch-src::proxy.c
parentUpdate to 0.8.0. (diff)
Update to 0.76. For a list of what's new and exciting, see:
http://gaim.sourceforge.net/ChangeLog Also, provide a better fix for quoted printable text. [1] PR: 65110 [1] Submitted by: green [1]
Notes
Notes: svn path=/head/; revision=106197
Diffstat (limited to 'net/gaim/files/patch-src::proxy.c')
-rw-r--r--net/gaim/files/patch-src::proxy.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/net/gaim/files/patch-src::proxy.c b/net/gaim/files/patch-src::proxy.c
deleted file mode 100644
index 2a8ede90c94e..000000000000
--- a/net/gaim/files/patch-src::proxy.c
+++ /dev/null
@@ -1,23 +0,0 @@
---- src/proxy.c.orig Fri Jan 9 23:04:56 2004
-+++ src/proxy.c Thu Mar 25 12:37:20 2004
-@@ -388,7 +388,11 @@
- int rc, err;
- GSList *hosts = NULL;
- struct sockaddr *addr = NULL;
-+#if HAVE_GETADDRINFO
-+ size_t addrlen;
-+#else
- socklen_t addrlen;
-+#endif
-
- gaim_debug(GAIM_DEBUG_INFO, "dns", "Host '%s' resolved\n", req->host);
- gaim_input_remove(req->inpa);
-@@ -974,7 +978,7 @@
-
- gaim_input_remove(phb->inpa);
-
-- while ((nlc != 2) && (read(source, &inputline[pos++], 1) == 1)) {
-+ while ((pos < sizeof(inputline)-1) && (nlc != 2) && (read(source, &inputline[pos++], 1) == 1)) {
- if (inputline[pos - 1] == '\n')
- nlc++;
- else if (inputline[pos - 1] != '\r')