# HG changeset patch # User Mark Doliner # Date 1108929791 0 # Node ID 351449bb5a74262bc1144338bf349d906eb34bae # Parent f0fd35985cb0d97506b59dd0fa75acefc90201f8 [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 diff -r f0fd35985cb0 -r 351449bb5a74 src/proxy.c --- 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 "