1
0
mirror of https://github.com/systemd/systemd synced 2025-10-06 00:13:24 +02:00

pam-util,libaudit-util: strip "lib" prefix from dlopen "feature" field

As per our usual coding style.
This commit is contained in:
Mike Yuan
2025-09-22 17:38:57 +02:00
parent f497a3f1c3
commit 1fbe44d013
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ static DLSYM_PROTOTYPE(audit_open) = NULL;
int dlopen_libaudit(void) {
#if HAVE_AUDIT
ELF_NOTE_DLOPEN("libaudit",
ELF_NOTE_DLOPEN("audit",
"Support for Audit logging",
ELF_NOTE_DLOPEN_PRIORITY_RECOMMENDED,
"libaudit.so.1");

View File

@@ -35,7 +35,7 @@ DLSYM_PROTOTYPE(pam_syslog) = NULL;
DLSYM_PROTOTYPE(pam_vsyslog) = NULL;
int dlopen_libpam(void) {
ELF_NOTE_DLOPEN("libpam",
ELF_NOTE_DLOPEN("pam",
"Support for LinuxPAM",
ELF_NOTE_DLOPEN_PRIORITY_RECOMMENDED,
"libpam.so.0");