Changeset 1266 for trunk


Ignore:
Timestamp:
03/22/19 15:56:54 (5 years ago)
Author:
bln4
Message:

Alteration to authadmin password protection.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/auth/Authenticator.java

    r1263 r1266  
    133133                // Fetch desired password
    134134                Scanner in = new Scanner(System.in);
    135                 System.out.println("It appears you have not yet set up a password for the administration account on Expeditee.");
     135                System.out.println("You have definately not yet set up a password for the administration account on Expeditee.");
    136136                System.out.print("Please enter it now: ");
     137                System.out.flush();
    137138                String password = in.nextLine();
    138139                System.out.print("And again: ");
     140                System.out.flush();
    139141                if (in.nextLine().equals(password)) {
    140142                        // Register account.
Note: See TracChangeset for help on using the changeset viewer.