[glibc] support: fix typo in support_readdir [BZ #34564]
Sam James via Glibc-cvs <[email protected]>
| Newsgroups | gmane.comp.lib.glibc.cvs |
|---|---|
| Message-ID | <[email protected]> |
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=53e5f02a6bca102884daed79abd1540aa9b9d19c commit 53e5f02a6bca102884daed79abd1540aa9b9d19c Author: Sam James <[email protected]> Date: Mon Aug 24 23:44:54 2026 +0100 support: fix typo in support_readdir [BZ #34564] The symbols are '...@GLIBC', not '...'@GBLIC'. Noticed when looking at BZ #34564. Fixes: 1251e9ea49fba9f53bbf4f290f3db90c01931fa7 Diff: --- support/support_readdir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/support_readdir.c b/support/support_readdir.c index 793b7bc87e..9c20ddcfdd 100644 --- a/support/support_readdir.c +++ b/support/support_readdir.c @@ -74,9 +74,9 @@ support_readdir_function (enum support_readdir_op op) case SUPPORT_READDIR64_R: return "readdir64_r"; case SUPPORT_READDIR64_COMPAT: - return "readdir64@GBLIC_2.1"; + return "readdir64@GLIBC_2.1"; case SUPPORT_READDIR64_R_COMPAT: - return "readdir64_r@GBLIC_2.1"; + return "readdir64_r@GLIBC_2.1"; } FAIL_EXIT1 ("invalid support_readdir_op constant: %d", op); }