diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2018-09-17 17:20:14 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2018-09-17 17:20:14 +0100 |
commit | 3fb3231cf83c8a9328499ea17b3663c1618210dc (patch) | |
tree | 392f6f550764ea072881b50d90fa3037636f0d33 /src/src/functions.h | |
parent | 570cb1bdbc6ea378b2dcaf6ebabb45a5610ed1ef (diff) |
Constification
Diffstat (limited to 'src/src/functions.h')
-rw-r--r-- | src/src/functions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/functions.h b/src/src/functions.h index 920f3d96f..f37c10733 100644 --- a/src/src/functions.h +++ b/src/src/functions.h @@ -570,7 +570,7 @@ extern int verify_check_headers(uschar **); extern int verify_check_header_names_ascii(uschar **); extern int verify_check_host(uschar **); extern int verify_check_notblind(void); -extern int verify_check_given_host(uschar **, host_item *); +extern int verify_check_given_host(const uschar **, const host_item *); extern int verify_check_this_host(const uschar **, unsigned int *, const uschar*, const uschar *, const uschar **); extern address_item *verify_checked_sender(uschar *); |