From: Ulrich Drepper Date: Fri, 26 Mar 2004 21:25:35 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/fedora-base~594 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ba541a978e7fcf28af4e2930f4136acd5fbcb22;p=thirdparty%2Fglibc.git Update. 2004-03-26 Ulrich Drepper * elf/dl-open.c (check_libc_caller): Fix typo. --- diff --git a/ChangeLog b/ChangeLog index 7c8709267b0..35c88997a19 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-03-26 Ulrich Drepper + + * elf/dl-open.c (check_libc_caller): Fix typo. + 2004-03-26 Jakub Jelinek * elf/tst-dlmodcount.c: Include stddef.h and stdlib.h. diff --git a/elf/dl-open.c b/elf/dl-open.c index 8af6eefb462..47db84c8671 100644 --- a/elf/dl-open.c +++ b/elf/dl-open.c @@ -183,7 +183,7 @@ check_libc_caller (const void *caller) expected1_from = (const void *) l->l_map_start; expected1_to = (const void *) l->l_map_end; } - else if (strcmp (expected1, l->l_name) == 0) + else if (strcmp (expected2, l->l_name) == 0) { is_2: expected2_from = (const void *) l->l_map_start;