Skip to content

Commit

Permalink
fix for #3803
Browse files Browse the repository at this point in the history
  • Loading branch information
ylangisc committed Mar 23, 2010
1 parent 442ee73 commit 748a3c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ch/cyberduck/core/AbstractProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void configure(final Host host) {
// can either be a SOCKS v4 or v5 server and it has to allow for
// unauthenticated connections.
final int port = this.getSOCKSProxyPort();
properties.put(SOCKS_PORT, port);
properties.put(SOCKS_PORT, Integer.toString(port));
final String proxy = this.getSOCKSProxyHost();
properties.put(SOCKS_HOST, proxy);
log.info("Using SOCKS Proxy " + proxy + ":" + port);
Expand Down

0 comments on commit 748a3c3

Please sign in to comment.