diff options
author | 2019-01-13 23:33:28 +0000 | |
---|---|---|
committer | 2019-01-13 23:33:28 +0000 | |
commit | 94d04a4dc036e7797a68cd707a0a4007797df7e9 (patch) | |
tree | 395377e3798ad2ce9c38958a581afc7c64bb5e2e | |
parent | Abstract /etc/resolv.conf.tail reading out of main() (diff) | |
download | wireguard-openbsd-94d04a4dc036e7797a68cd707a0a4007797df7e9.tar.xz wireguard-openbsd-94d04a4dc036e7797a68cd707a0a4007797df7e9.zip |
Map SHT_LLVM_ADDRSIG to string
ok kettenis@ deraadt@
-rw-r--r-- | gnu/usr.bin/binutils-2.17/binutils/readelf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/usr.bin/binutils-2.17/binutils/readelf.c b/gnu/usr.bin/binutils-2.17/binutils/readelf.c index b2c0186d418..da541dc90e7 100644 --- a/gnu/usr.bin/binutils-2.17/binutils/readelf.c +++ b/gnu/usr.bin/binutils-2.17/binutils/readelf.c @@ -2625,6 +2625,7 @@ get_section_type_name (unsigned int sh_type) case 0x7ffffffd: return "AUXILIARY"; case 0x7fffffff: return "FILTER"; case SHT_GNU_LIBLIST: return "GNU_LIBLIST"; + case SHT_LLVM_ADDRSIG: return "LLVM_ADDRSIG"; default: if ((sh_type >= SHT_LOPROC) && (sh_type <= SHT_HIPROC)) |