Update Password.java

Fixed typo.

Trivial fix from github/pull/21
This commit is contained in:
Greg Wilkins 2014-09-09 15:13:46 +02:00
parent 7dfd9115a4
commit c80f556139
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ public class Password extends Credential
{
if (arg.length != 1 && arg.length != 2)
{
System.err.println("Usage - java org.eclipse.jetty.security.Password [<user>] <password>");
System.err.println("Usage - java " + Password.class.getName() + " [<user>] <password>");
System.err.println("If the password is ?, the user will be prompted for the password");
System.exit(1);
}