Module Name: src
Committed By: skrll
Date: Tue Feb 9 10:20:03 UTC 2016
Modified Files:
src/libexec/ld.elf_so: sysident.h
Log Message:
Actually, descsz should not contain the padding. The note still needs to
be padded out.
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/libexec/ld.elf_so/sysident.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/libexec/ld.elf_so/sysident.h
diff -u src/libexec/ld.elf_so/sysident.h:1.18 src/libexec/ld.elf_so/sysident.h:1.19
--- src/libexec/ld.elf_so/sysident.h:1.18 Mon Feb 8 11:59:39 2016
+++ src/libexec/ld.elf_so/sysident.h Tue Feb 9 10:20:03 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: sysident.h,v 1.18 2016/02/08 11:59:39 skrll Exp $ */
+/* $NetBSD: sysident.h,v 1.19 2016/02/09 10:20:03 skrll Exp $ */
/*
* Copyright (c) 1997 Christopher G. Demetriou
@@ -98,8 +98,8 @@ __asm(
"\t.long\t" __S(ELF_NOTE_TYPE_MARCH_TAG) "\n"
"\t.ascii\t" __S(ELF_NOTE_MARCH_NAME) "\n"
"1:\t.asciz\t" __S(ELF_NOTE_MARCH_DESC) "\n"
- "\t.p2align\t2\n\n"
"2:\n"
+ "\t.p2align\t2\n\n"
"\t.popsection\n"
);