Mercurial > pidgin
changeset 10613:351449bb5a74
[gaim-migrate @ 12072]
sf bug #1143938, from Torrey McMahon
Functions declared as returning void should not
attempt to return stuff, silly goose.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 20 Feb 2005 20:03:11 +0000 |
parents | f0fd35985cb0 |
children | 522b719ea774 |
files | src/proxy.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/proxy.c Sat Feb 19 19:46:09 2005 +0000 +++ b/src/proxy.c Sun Feb 20 20:03:11 2005 +0000 @@ -1415,7 +1415,8 @@ /* Did auth work? */ if (buf[0] == 0x00) { /* Success */ - return s5_sendconnect(phb, source); + s5_sendconnect(phb, source); + return; } else { /* Failure */ gaim_debug_warning("proxy", "socks5 CHAP authentication "