From: Timo Sirainen Date: Tue, 1 Feb 2022 13:58:57 +0000 (+0100) Subject: lmtp: struct lmtp_recipient - Change all strings to const X-Git-Tag: 2.4.0~4578 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b1b3798cef20d1ef05fb5681b7e562eaea554131;p=thirdparty%2Fdovecot%2Fcore.git lmtp: struct lmtp_recipient - Change all strings to const --- diff --git a/src/lmtp/lmtp-recipient.h b/src/lmtp/lmtp-recipient.h index 9863d3e333..c28b4c2c9f 100644 --- a/src/lmtp/lmtp-recipient.h +++ b/src/lmtp/lmtp-recipient.h @@ -17,13 +17,13 @@ struct lmtp_recipient { struct client *client; struct smtp_server_recipient *rcpt; - char *username, *detail; + const char *username, *detail; char delim; enum lmtp_recipient_type type; void *backend_context; - char *session_id; + const char *session_id; const char *forward_fields; /* Module-specific contexts. */