Skip to content

Commit

Permalink
Fix typo in musl build fix
Browse files Browse the repository at this point in the history
Commit cbdbc8d checked for
__GLIBC__PREREQ instead of __GLIBC_PREREQ, thus accidentally reverting
the workaround introduced in commit
bf5953c.  Fix the typo.

(cherry picked from commit b009cca)

ticket: 8880
version_fixed: 1.18.1
  • Loading branch information
greghudson committed Mar 18, 2020
1 parent 062dbfa commit 995530c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/support/plugins.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 995530c

Please sign in to comment.