X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/5d758a462abebb9885f2e596f7892479812de125..1ba28e2b955b005ce4825fec792df17f75a8de1e:/src/src/expand.c diff --git a/src/src/expand.c b/src/src/expand.c index 1fd4335da..bf425ae81 100644 --- a/src/src/expand.c +++ b/src/src/expand.c @@ -328,9 +328,9 @@ enum { /* Type for main variable table */ typedef struct { - char *name; - int type; - void *value; + const char *name; + int type; + void *value; } var_entry; /* Type for entries pointing to address/length pairs. Not currently @@ -632,9 +632,9 @@ static BOOL malformed_header; /* For textual hashes */ -static char *hashcodes = "abcdefghijklmnopqrtsuvwxyz" - "ABCDEFGHIJKLMNOPQRSTUVWXYZ" - "0123456789"; +static const char *hashcodes = "abcdefghijklmnopqrtsuvwxyz" + "ABCDEFGHIJKLMNOPQRSTUVWXYZ" + "0123456789"; enum { HMAC_MD5, HMAC_SHA1 };