diff options
author | Maria Matejka <mq@jmq.cz> | 2020-04-08 22:25:15 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2020-04-09 15:37:14 +0200 |
commit | fd9f0c0640fd02a26b96b4f9d3cbbffbb6544a84 (patch) | |
tree | 3cfac115f49d41f3d62d41c4ddfffe50f2c381a4 /proto/radv | |
parent | a109056145a6bc8a6b498ecb6e309ebc143c8b3c (diff) |
Configuration strings are constant.
This is merely a const propagation. There was no problem in there.
Diffstat (limited to 'proto/radv')
-rw-r--r-- | proto/radv/packets.c | 4 | ||||
-rw-r--r-- | proto/radv/radv.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/proto/radv/packets.c b/proto/radv/packets.c index 3139d321..5cd8b2de 100644 --- a/proto/radv/packets.c +++ b/proto/radv/packets.c @@ -173,8 +173,8 @@ radv_process_domain(struct radv_dnssl_config *cf) { /* Format of domain in search list is <size> <label> <size> <label> ... 0 */ - char *dom = cf->domain; - char *dom_end = dom; /* Just to */ + const char *dom = cf->domain; + const char *dom_end = dom; /* Just to */ u8 *dlen_save = &cf->dlen_first; uint len; diff --git a/proto/radv/radv.h b/proto/radv/radv.h index 2c8ad7d4..14d40f8a 100644 --- a/proto/radv/radv.h +++ b/proto/radv/radv.h @@ -119,7 +119,7 @@ struct radv_dnssl_config u16 lifetime_mult; /* Lifetime specified as multiple of max_ra_int */ u8 dlen_first; /* Length of first label in domain */ u8 dlen_all; /* Both dlen_ filled in radv_process_domain() */ - char *domain; /* Domain for DNS search list, in processed form */ + const char *domain; /* Domain for DNS search list, in processed form */ }; /* |