Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,12 @@ private static boolean isAuthenticationMethodEnabled(AuthenticationMethod method

private static final boolean windows =
System.getProperty("os.name").startsWith("Windows");

// s390x for zLinux (64 bit)
private static final boolean is64Bit =
System.getProperty("os.arch").contains("64");
System.getProperty("os.arch").contains("64") ||
System.getProperty("os.arch").contains("s390x");

private static final boolean aix = System.getProperty("os.name").equals("AIX");

/* Return the OS login module class name */
Expand Down