aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2020-03-12 00:44:10 -0400
committerGreg Hudson <ghudson@mit.edu>2020-03-18 10:44:16 -0400
commit995530c8acc59855112c9af53ecf6bdb9cb2f7ad (patch)
tree211b634ec381f79143ababaace1542ce10159e9d
parent062dbfaa9c66d29bca3e7071fcaba336172987b9 (diff)
downloadkrb5-995530c8acc59855112c9af53ecf6bdb9cb2f7ad.zip
krb5-995530c8acc59855112c9af53ecf6bdb9cb2f7ad.tar.gz
krb5-995530c8acc59855112c9af53ecf6bdb9cb2f7ad.tar.bz2
Fix typo in musl build fix
Commit cbdbc8d00d31344fafe00e0fdf984e04e631f7c4 checked for __GLIBC__PREREQ instead of __GLIBC_PREREQ, thus accidentally reverting the workaround introduced in commit bf5953c549a6d279977df69ffe89b2ba51460eaf. Fix the typo. (cherry picked from commit b009cca2026b615ef5386faa4c0230bc27c4161d) ticket: 8880 version_fixed: 1.18.1
-rw-r--r--src/util/support/plugins.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/support/plugins.c b/src/util/support/plugins.c
index 1644d16..1ff10c3 100644
--- a/src/util/support/plugins.c
+++ b/src/util/support/plugins.c
@@ -62,7 +62,7 @@
* dlopen() with RTLD_NODELETE, we weren't going to unload the plugin objects
* anyway.
*/
-#ifdef __GLIBC__PREREQ
+#ifdef __GLIBC_PREREQ
#if ! __GLIBC_PREREQ(2, 25)
#define dlclose(x)
#endif