diff options
| author | Jeff King <peff@peff.net> | 2024-08-17 04:21:27 -0400 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-08-17 09:46:10 -0700 |
| commit | 4647f24302a01465fa5c2a90e7a60d0aa96ac49b (patch) | |
| tree | d69777e9dd4b4cb2b200afe559658841d5775809 | |
| parent | b9849e4f7631d80f146d159bf7b60263b3205632 (diff) | |
| download | git-4647f24302a01465fa5c2a90e7a60d0aa96ac49b.tar.gz | |
imap-send: mark unused parameter in ssl_socket_connect() fallback
Commit cea1ff7f1f (imap-send: drop global `imap_server_conf` variable,
2024-06-07) added an imap_server_conf parameter to several functions.
But when compiled with NO_OPENSSL, the ssl_socket_connect() fallback
just returns immediately, so its parameters all need to be annotated to
avoid triggering -Wunused-parameter.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rw-r--r-- | imap-send.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/imap-send.c b/imap-send.c index 01404e5047..3551908de6 100644 --- a/imap-send.c +++ b/imap-send.c @@ -190,7 +190,7 @@ static void socket_perror(const char *func, struct imap_socket *sock, int ret) #ifdef NO_OPENSSL static int ssl_socket_connect(struct imap_socket *sock UNUSED, - const struct imap_server_conf *cfg, + const struct imap_server_conf *cfg UNUSED, int use_tls_only UNUSED) { fprintf(stderr, "SSL requested but SSL support not compiled in\n"); |
