# HG changeset patch # User Tim Ringenbach # Date 1089094934 0 # Node ID 0577bb34622d920ae39b1dc94281623e0cf0bf79 # Parent 5b4b3fb286b05ba607c9c28c341a2410c4c1299a [gaim-migrate @ 10280] This fixes bug #964043 We were truncating the port to 4 ascii digits, because our buffer was too small. Oops. Let this be an example to you, not all users are on crack. This bug was somewhat confusing by the fact that the spin button to choose the port is only big enough to show 4 digits at a time. That's completely unrelated though, you can hit HOME and END and stuff to see all the digits and it saves file and all. committer: Tailor Script diff -r 5b4b3fb286b0 -r 0577bb34622d src/network.c --- a/src/network.c Tue Jul 06 05:37:16 2004 +0000 +++ b/src/network.c Tue Jul 06 06:22:14 2004 +0000 @@ -154,7 +154,7 @@ #if HAVE_GETADDRINFO int errnum; struct addrinfo hints, *res, *next; - char serv[5]; + char serv[6]; /* * Get a list of addresses on this machine.