gaim/gaim

sf patch #1162827, from Rian Hunter
oldstatus
2005-03-19, Mark Doliner
3f480a32bb44
Parents 1603d2de5774
Children 47e2c184b54b
sf patch #1162827, from Rian Hunter
Fix a 64bit IPC dns child bug
  • +1 -1
    src/proxy.c
  • --- a/src/proxy.c Sat Mar 19 20:27:09 2005 -0500
    +++ b/src/proxy.c Sat Mar 19 21:06:18 2005 -0500
    @@ -421,7 +421,7 @@
    static void
    gaim_dns_childthread(int child_out, int child_in, dns_params_t *dns_params, gboolean show_debug)
    {
    - const int zero = 0;
    + const size_t zero = 0;
    int rc;
    #if HAVE_GETADDRINFO
    struct addrinfo hints, *res, *tmp;