summaryrefslogtreecommitdiff
path: root/elf/dl-misc.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-08-25 06:33:07 +0000
committerUlrich Drepper <drepper@redhat.com>2001-08-25 06:33:07 +0000
commitcf44e2dd737fb0e6e75d68bc82df84de657d0a40 (patch)
tree69b3043c4fa4c6d2ad06ec4157b10dcc174dd923 /elf/dl-misc.c
parentc90b5d28387b2fe48e6faba05b0b17d67148be3a (diff)
Update.
2001-08-24 Ulrich Drepper <drepper@redhat.com> * elf/rtld.c (print_statistics): Printf % after percent values. * elf/dl-misc.c (_dl_debug_vdprintf): Implement %%. * elf/dl-lookup.c (_dl_lookup_symbol): If we use the cache we don't have to compute the hash value and initialize current_value. Move reference_name variable to where it is needed. (_dl_lookup_versioned_symbol): Likewise.
Diffstat (limited to 'elf/dl-misc.c')
-rw-r--r--elf/dl-misc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/elf/dl-misc.c b/elf/dl-misc.c
index f4b73989af..f1abfb7f29 100644
--- a/elf/dl-misc.c
+++ b/elf/dl-misc.c
@@ -211,6 +211,12 @@ _dl_debug_vdprintf (int fd, int tag_p, const char *fmt, va_list arg)
++niov;
break;
+ case '%':
+ iov[niov].iov_base = (void *) fmt;
+ iov[niov].iov_len = 1;
+ ++niov;
+ break;
+
default:
assert (! "invalid format specifier");
}