diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-08-08 21:24:28 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-08-08 21:24:28 +0000 |
commit | c633e822b473e8135a36e413c5b79d7ce5a5d1fc (patch) | |
tree | e5df9cdd3adf75d668514db59074d3ec55442c2d /nptl | |
parent | edf63004732b28995411cf3dca34215cf2982901 (diff) | |
download | glibc-c633e822b473e8135a36e413c5b79d7ce5a5d1fc.tar glibc-c633e822b473e8135a36e413c5b79d7ce5a5d1fc.tar.gz glibc-c633e822b473e8135a36e413c5b79d7ce5a5d1fc.tar.bz2 glibc-c633e822b473e8135a36e413c5b79d7ce5a5d1fc.zip |
* sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
Shift marked &errno down on big-endian instead of up.
* elf/tst-stackguard1.c (do_test): Fix a typo.
nptl/
* tst-stackguard1.c (do_test): Likewise.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 4 | ||||
-rw-r--r-- | nptl/tst-stackguard1.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 38983a81d1..e14555dce5 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,7 @@ +2005-08-08 Jakub Jelinek <jakub@redhat.com> + + * tst-stackguard1.c (do_test): Likewise. + 2005-07-29 Jakub Jelinek <jakub@redhat.com> * tst-stackguard1.c (do_test): Don't fail if the poor man's diff --git a/nptl/tst-stackguard1.c b/nptl/tst-stackguard1.c index d9bbe206c3..77ebbfbd7e 100644 --- a/nptl/tst-stackguard1.c +++ b/nptl/tst-stackguard1.c @@ -198,7 +198,7 @@ do_test (void) else if (child_stack_chk_guards[i] == default_guard) ndefaults++; else if (*(char *) &child_stack_chk_guards[i] == 0) - npartlyrandomized = 0; + npartlyrandomized++; } printf ("differences %d defaults %d partly randomized %d\n", |