Mercurial > pidgin.yaz
diff src/sslconn.c @ 14179:db2d55d332d6
[gaim-migrate @ 16829]
Just rename connect to connectfunc. This is what it was like
before my changes. Now I know why!
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Fri, 18 Aug 2006 05:58:17 +0000 |
parents | 8160857cd958 |
children |
line wrap: on
line diff
--- a/src/sslconn.c Fri Aug 18 05:56:10 2006 +0000 +++ b/src/sslconn.c Fri Aug 18 05:58:17 2006 +0000 @@ -46,7 +46,7 @@ ops = gaim_ssl_get_ops(); if ((ops == NULL) || (ops->init == NULL) || (ops->uninit == NULL) || - (ops->connect == NULL) || (ops->close == NULL) || + (ops->connectfunc == NULL) || (ops->close == NULL) || (ops->read == NULL) || (ops->write == NULL)) { return FALSE; @@ -87,7 +87,7 @@ gsc->fd = source; ops = gaim_ssl_get_ops(); - (ops->connect)(gsc); + ops->connectfunc(gsc); } GaimSslConnection * @@ -177,7 +177,7 @@ gsc->fd = fd; ops = gaim_ssl_get_ops(); - (ops->connect)(gsc); + ops->connectfunc(gsc); return (GaimSslConnection *)gsc; }