Skip to content

Commit

Permalink
fix possible values for clientAuth
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/tomcat/maven-plugin/trunk@1440892 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
olamy committed Jan 31, 2013
1 parent b93455e commit 5bd72c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -90,7 +90,7 @@ public class Tomcat7Runner

public boolean debug = false;

public boolean clientAuth = false;
public String clientAuth = "false";

public String keyAlias = null;

Expand Down
Expand Up @@ -178,7 +178,7 @@ public static void main( String[] args )
}
if ( line.hasOption( clientAuth.getOpt() ) )
{
tomcat7Runner.clientAuth = true;
tomcat7Runner.clientAuth = clientAuth.getOpt();
}
if ( line.hasOption( keyAlias.getOpt() ) )
{
Expand Down

0 comments on commit 5bd72c1

Please sign in to comment.