summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2022-07-05 14:40:38 +0200
committerFlorian Weimer <fweimer@redhat.com>2022-07-05 14:40:38 +0200
commita9f9ee2381944cee8b4b50c5c8321e3529c77e49 (patch)
treeaa040168f19db326dc32ba207100ee526ba685a7
parent7519dee356a0ab21c8990e59ed05dd48a4e573a0 (diff)
downloadglibc-a9f9ee2381944cee8b4b50c5c8321e3529c77e49.tar.gz
glibc-a9f9ee2381944cee8b4b50c5c8321e3529c77e49.tar.xz
glibc-a9f9ee2381944cee8b4b50c5c8321e3529c77e49.zip
elf: Fix direction of NODELETE log messages during symbol lookup
NODELETE status is propagated from the referencing object to the
referenced object, not the other way round.  The code is correct, only
the log message has the wrong direction.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
-rw-r--r--elf/dl-lookup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-lookup.c b/elf/dl-lookup.c
index 8cb32321da..4c86dc694e 100644
--- a/elf/dl-lookup.c
+++ b/elf/dl-lookup.c
@@ -646,11 +646,11 @@ add_dependency (struct link_map *undef_map, struct link_map *map, int flags)
 	    {
 	      if (undef_map->l_name[0] == '\0')
 		_dl_debug_printf ("\
-marking %s [%lu] as NODELETE due to reference to main program\n",
+marking %s [%lu] as NODELETE due to reference from main program\n",
 				  map->l_name, map->l_ns);
 	      else
 		_dl_debug_printf ("\
-marking %s [%lu] as NODELETE due to reference to %s [%lu]\n",
+marking %s [%lu] as NODELETE due to reference from %s [%lu]\n",
 				  map->l_name, map->l_ns,
 				  undef_map->l_name, undef_map->l_ns);
 	    }