gaim/gaim

9e96049197b5
Parents 0b40216af04a
Children f7ade2d16d37
Fix the DNS thing on 64-bit computers where size_t is 8 bytes FOR REAL
  • +1 -1
    src/proxy.c
  • --- a/src/proxy.c Sun Mar 20 12:19:46 2005 -0500
    +++ b/src/proxy.c Sun Mar 20 12:20:16 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 size_t zero = 0;
    + const int zero = 0;
    int rc;
    #if HAVE_GETADDRINFO
    struct addrinfo hints, *res, *tmp;