diff options
author | guenther <> | 2019-07-14 03:30:46 +0000 |
---|---|---|
committer | guenther <> | 2019-07-14 03:30:46 +0000 |
commit | bc8d7db132e8ba050dd6707a72cea5d3b6976e03 (patch) | |
tree | 5082b2b4a1bbd244a864f580178d406f6a694e72 /src/usr.bin/openssl/dh.c | |
parent | 7e286c6ee458c5d54810f9952a2a61b1bc9538bc (diff) | |
download | openbsd-bc8d7db132e8ba050dd6707a72cea5d3b6976e03.tar.gz openbsd-bc8d7db132e8ba050dd6707a72cea5d3b6976e03.tar.bz2 openbsd-bc8d7db132e8ba050dd6707a72cea5d3b6976e03.zip |
Mark the initialized struct options arrays as both static and const.
This moves them from .data to .data.rel.ro
ok deraadt@ inoguchi@
Diffstat (limited to 'src/usr.bin/openssl/dh.c')
-rw-r--r-- | src/usr.bin/openssl/dh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/dh.c b/src/usr.bin/openssl/dh.c index 827ca9c7ea..9557d15a3f 100644 --- a/src/usr.bin/openssl/dh.c +++ b/src/usr.bin/openssl/dh.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dh.c,v 1.11 2018/02/07 05:47:55 jsing Exp $ */ | 1 | /* $OpenBSD: dh.c,v 1.12 2019/07/14 03:30:45 guenther Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -85,7 +85,7 @@ static struct { | |||
85 | int text; | 85 | int text; |
86 | } dh_config; | 86 | } dh_config; |
87 | 87 | ||
88 | static struct option dh_options[] = { | 88 | static const struct option dh_options[] = { |
89 | { | 89 | { |
90 | .name = "C", | 90 | .name = "C", |
91 | .desc = "Convert DH parameters into C code", | 91 | .desc = "Convert DH parameters into C code", |