aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2022-09-18 22:16:52 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2022-09-25 11:18:25 +0000
commit5593488d8bc5b2e2fcf3e70d98703e7bb07e9712 (patch)
treeff55adfdb7e0efb4bb515bd68069d794294a4322
parentb76c89cb3377039e31553808011b259d3b1d6b48 (diff)
downloadsrc-5593488d8bc5b2e2fcf3e70d98703e7bb07e9712.tar.gz
src-5593488d8bc5b2e2fcf3e70d98703e7bb07e9712.zip
rtld-elf/libmap.c: correct comment
(cherry picked from commit 1251cf8a30ac496e8c672948dabb9291a17ad71a)
-rw-r--r--libexec/rtld-elf/libmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/rtld-elf/libmap.c b/libexec/rtld-elf/libmap.c
index 854c73f39ef7..5a7c01f9d179 100644
--- a/libexec/rtld-elf/libmap.c
+++ b/libexec/rtld-elf/libmap.c
@@ -58,8 +58,8 @@ static const char *quickbasename(const char *);
((c) == '\n') || ((c) == '\r'))
/*
- * Do not use ctype.h macros, which rely on working TLS. It is
- * too early to have thread-local variables functional.
+ * Do not use ctype.h macros, which rely on working TLS. Rtld does
+ * not support TLS for itself.
*/
#define rtld_isspace(c) ((c) == ' ' || (c) == '\t')