diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2019-01-05 18:51:19 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2019-02-10 23:57:57 +0000 |
commit | 1f20760b17087817459e6c6baffa28de4b7d5aa2 (patch) | |
tree | f8321ddce202195fcaba6a61acce8c86b0fbd72a /src/src/functions.h | |
parent | d7f31bb61bd2255d45470d238680ac53eca62264 (diff) |
constification
(cherry picked from commit e8a25e05698e39a45cf5f188476808ef3609dbdd)
Diffstat (limited to 'src/src/functions.h')
-rw-r--r-- | src/src/functions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/src/functions.h b/src/src/functions.h index cab7a7363..866865600 100644 --- a/src/src/functions.h +++ b/src/src/functions.h @@ -108,7 +108,7 @@ extern int auth_check_serv_cond(auth_instance *); extern int auth_check_some_cond(auth_instance *, uschar *, uschar *, int); -extern int auth_get_data(uschar **, uschar *, int); +extern int auth_get_data(uschar **, const uschar *, int); extern int auth_get_no64_data(uschar **, uschar *); extern void auth_show_supported(FILE *); extern uschar *auth_xtextencode(uschar *, int); @@ -128,7 +128,7 @@ extern gstring *authres_smtpauth(gstring *); extern gstring *authres_spf(gstring *); #endif -extern uschar *b64encode(uschar *, int); +extern uschar *b64encode(const uschar *, int); extern int b64decode(const uschar *, uschar **); extern int bdat_getc(unsigned); extern uschar *bdat_getbuf(unsigned *); |