From: Ævar Arnfjörð Bjarmason Date: Thu, 24 Feb 2022 09:32:56 +0000 (+0100) Subject: imap-send.c: use designated initializers for "struct imap_server_conf" X-Git-Tag: v2.36.0-rc0~91^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=518f7059a82cbf08080ee385d91e557df53a1560;p=thirdparty%2Fgit.git imap-send.c: use designated initializers for "struct imap_server_conf" Cut down a lot on the verbosity of the "server" assignment in imap-send.c using designated initializers, only the "ssl_verify" member was being set to a non-NULL non-0 value. Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/imap-send.c b/imap-send.c index e6090a0346..5ac6fa9c66 100644 --- a/imap-send.c +++ b/imap-send.c @@ -98,17 +98,7 @@ struct imap_server_conf { }; static struct imap_server_conf server = { - NULL, /* name */ - NULL, /* tunnel */ - NULL, /* host */ - 0, /* port */ - NULL, /* folder */ - NULL, /* user */ - NULL, /* pass */ - 0, /* use_ssl */ - 1, /* ssl_verify */ - 0, /* use_html */ - NULL, /* auth_method */ + .ssl_verify = 1, }; struct imap_socket {