changeset 21916:33dda485596b

global: Remove extra ';' to fix compiler errors Sun C doesn't like them.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Fri, 07 Apr 2017 09:34:39 +0300
parents 6ba293f64b49
children 7a419cf835f0
files src/auth/auth-policy.c src/plugins/mail-crypt/mail-crypt-key.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/auth/auth-policy.c	Fri Apr 07 09:32:30 2017 +0300
+++ b/src/auth/auth-policy.c	Fri Apr 07 09:34:39 2017 +0300
@@ -328,7 +328,7 @@
 	if (context->callback != NULL) {
 		context->callback(context->result, context->callback_context);
 	}
-};
+}
 
 static
 void auth_policy_process_response(const struct http_response *response,
--- a/src/plugins/mail-crypt/mail-crypt-key.c	Fri Apr 07 09:32:30 2017 +0300
+++ b/src/plugins/mail-crypt/mail-crypt-key.c	Fri Apr 07 09:34:39 2017 +0300
@@ -999,7 +999,7 @@
 	*pubid_r = binary_to_hex(key_id->data, key_id->used);
 
 	return 0;
-};
+}
 
 int mail_crypt_user_generate_keypair(struct mail_user *user,
 				     struct dcrypt_keypair *pair,