Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Schmidt committed Apr 26, 2016
1 parent 0321039 commit a669641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FtpProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public void run() {
int c = userString.lastIndexOf(':');
if (c < a) c = -1;

if (a == -1 && args.length > 1) {
if (a == -1 && config.isUrlSyntaxEnabled) {
int c1 = userString.lastIndexOf('*');
if (c1 != -1) {
c = c1;
Expand Down

0 comments on commit a669641

Please sign in to comment.