]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
plugins: push-notification: Reformat push-notification-event-messageexpunge.c.
authorStephan Bosch <stephan.bosch@open-xchange.com>
Sun, 1 Dec 2019 10:28:42 +0000 (11:28 +0100)
committertimo.sirainen <timo.sirainen@open-xchange.com>
Thu, 6 Feb 2020 12:18:41 +0000 (12:18 +0000)
src/plugins/push-notification/push-notification-event-messageexpunge.c

index 2c868e262471d1712fe7d58da1a3fba5d508a118..cfa301e124006021cb01ef40bb61c235f3264d97 100644 (file)
@@ -9,47 +9,45 @@
 #include "push-notification-events.h"
 #include "push-notification-txn-msg.h"
 
-
 #define EVENT_NAME "MessageExpunge"
 
-
-static void push_notification_event_messageexpunge_debug_msg
-(struct push_notification_txn_event *event)
+static void
+push_notification_event_messageexpunge_debug_msg(
+       struct push_notification_txn_event *event)
 {
-    struct push_notification_event_messageexpunge_data *data = event->data;
+       struct push_notification_event_messageexpunge_data *data = event->data;
 
-    if (data != NULL) {
-        i_debug("%s: Message was expunged", EVENT_NAME);
-    }
+       if (data != NULL)
+               i_debug("%s: Message was expunged", EVENT_NAME);
 }
 
-static void push_notification_event_messageexpunge_event(
-    struct push_notification_txn *ptxn,
-    struct push_notification_event_config *ec,
-    struct push_notification_txn_msg *msg)
+static void
+push_notification_event_messageexpunge_event(
+       struct push_notification_txn *ptxn,
+       struct push_notification_event_config *ec,
+       struct push_notification_txn_msg *msg)
 {
-    struct push_notification_event_messageexpunge_data *data;
-
-    data = push_notification_txn_msg_get_eventdata(msg, EVENT_NAME);
-    if (data == NULL) {
-        data = p_new(ptxn->pool,
-                     struct push_notification_event_messageexpunge_data, 1);
-        data->expunge = TRUE;
-        push_notification_txn_msg_set_eventdata(ptxn, msg, ec, data);
-    }
+       struct push_notification_event_messageexpunge_data *data;
+
+       data = push_notification_txn_msg_get_eventdata(msg, EVENT_NAME);
+       if (data == NULL) {
+               data = p_new(ptxn->pool,
+                            struct push_notification_event_messageexpunge_data, 1);
+               data->expunge = TRUE;
+               push_notification_txn_msg_set_eventdata(ptxn, msg, ec, data);
+       }
 }
 
-
 /* Event definition */
 
 extern struct push_notification_event push_notification_event_messageexpunge;
 
 struct push_notification_event push_notification_event_messageexpunge = {
-    .name = EVENT_NAME,
-    .msg = {
-        .debug_msg = push_notification_event_messageexpunge_debug_msg
-    },
-    .msg_triggers = {
-        .expunge = push_notification_event_messageexpunge_event
-    }
+       .name = EVENT_NAME,
+       .msg = {
+               .debug_msg = push_notification_event_messageexpunge_debug_msg,
+       },
+       .msg_triggers = {
+               .expunge = push_notification_event_messageexpunge_event,
+       },
 };