-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
crypt.c: Don't attempt to seed crypt_data.current_salt. (#43)
current_salt is a deprecated field that is only set when NEED_CRYPTO_IMPL is defined, such as on Debian 10 and other older distros that don't provide a sufficiently capable crypt_r. However, some distros, such as Rocky Linux 8, don't even have these fields in their crypt_data struct. Since it's not clear what this accomplished and appears to be unnecessary, just disable this for now. To ensure this doesn't cause a regression, all the Linux CI's now also run at least the menu tests, to ensure that authentication succeeds (since that can rely on the affected code).
- Loading branch information
1 parent
e3008e3
commit 2ab56c8
Showing
3 changed files
with
48 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters