comparison libpurple/proxy.c @ 32506:9f26efb70c67

xnyhps noticed that 'purple_proxy_connect_socks5' is passing the handle to the account param of 'purple_proxy_connect_socks5_account' Fixes #14890
author Daniel Atallah <daniel.atallah@gmail.com>
date Mon, 23 Jan 2012 16:22:33 +0000
parents 5498ee1aa30b
children 0c2efa69492b 5ae7e1f36b43
comparison
equal deleted inserted replaced
32390:c0c60e110c82 32506:9f26efb70c67
2402 purple_proxy_connect_socks5(void *handle, PurpleProxyInfo *gpi, 2402 purple_proxy_connect_socks5(void *handle, PurpleProxyInfo *gpi,
2403 const char *host, int port, 2403 const char *host, int port,
2404 PurpleProxyConnectFunction connect_cb, 2404 PurpleProxyConnectFunction connect_cb,
2405 gpointer data) 2405 gpointer data)
2406 { 2406 {
2407 return purple_proxy_connect_socks5_account(NULL, handle, gpi, 2407 return purple_proxy_connect_socks5_account(handle, NULL, gpi,
2408 host, port, connect_cb, data); 2408 host, port, connect_cb, data);
2409 } 2409 }
2410 2410
2411 2411
2412 /* This is called when we connect to the SOCKS5 proxy server (through any 2412 /* This is called when we connect to the SOCKS5 proxy server (through any