]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix typo in musl build fix
authorGreg Hudson <ghudson@mit.edu>
Thu, 12 Mar 2020 04:44:10 +0000 (00:44 -0400)
committerGreg Hudson <ghudson@mit.edu>
Thu, 12 Mar 2020 04:44:10 +0000 (00:44 -0400)
Commit cbdbc8d00d31344fafe00e0fdf984e04e631f7c4 checked for
__GLIBC__PREREQ instead of __GLIBC_PREREQ, thus accidentally reverting
the workaround introduced in commit
bf5953c549a6d279977df69ffe89b2ba51460eaf.  Fix the typo.

ticket: 8880

src/util/support/plugins.c

index 1644d16fd07e607a60d10613c44c422fcc576699..1ff10c354d0fc3d24637132056c8b8f58057523c 100644 (file)
@@ -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