From: Timo Sirainen Date: Mon, 4 Nov 2013 07:47:17 +0000 (+0200) Subject: ssl-params: Compiler warning fix when building without OpenSSL X-Git-Tag: 2.2.8~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4bb33323cecf2d817edfebf8f69c6d4f3a5b647;p=thirdparty%2Fdovecot%2Fcore.git ssl-params: Compiler warning fix when building without OpenSSL --- diff --git a/src/ssl-params/ssl-params.c b/src/ssl-params/ssl-params.c index 479249f58f..e19d16ad6f 100644 --- a/src/ssl-params/ssl-params.c +++ b/src/ssl-params/ssl-params.c @@ -34,8 +34,9 @@ struct ssl_params { ssl_params_callback_t *callback; }; -static void ssl_params_if_unchanged(const char *path, time_t mtime, - unsigned int ssl_dh_parameters_length) +static void +ssl_params_if_unchanged(const char *path, time_t mtime, + unsigned int ssl_dh_parameters_length ATTR_UNUSED) { const char *temp_path; struct file_lock *lock;