]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
plugins: push-notification: Reformat push-notification-event-mailboxdelete.c.
authorStephan Bosch <stephan.bosch@open-xchange.com>
Sun, 1 Dec 2019 10:26:13 +0000 (11:26 +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-mailboxdelete.c

index b5768784a4203feac4eb8e2ba99e782eb23dd940..8e65f3cfb78c48eb319a8685d98c932dcdcb2fe7 100644 (file)
@@ -7,41 +7,40 @@
 #include "push-notification-event-mailboxdelete.h"
 #include "push-notification-txn-mbox.h"
 
-
 #define EVENT_NAME "MailboxDelete"
 
-
-static void push_notification_event_mailboxdelete_debug_mbox
-(struct push_notification_txn_event *event ATTR_UNUSED)
+static void
+push_notification_event_mailboxdelete_debug_mbox(
+       struct push_notification_txn_event *event ATTR_UNUSED)
 {
-    i_debug("%s: Mailbox was deleted", EVENT_NAME);
+       i_debug("%s: Mailbox was deleted", EVENT_NAME);
 }
 
-static void push_notification_event_mailboxdelete_event(
-    struct push_notification_txn *ptxn,
-    struct push_notification_event_config *ec,
-    struct push_notification_txn_mbox *mbox)
+static void
+push_notification_event_mailboxdelete_event(
+       struct push_notification_txn *ptxn,
+       struct push_notification_event_config *ec,
+       struct push_notification_txn_mbox *mbox)
 {
-    struct push_notification_event_mailboxdelete_data *data;
+       struct push_notification_event_mailboxdelete_data *data;
 
-    data = p_new(ptxn->pool,
-                 struct push_notification_event_mailboxdelete_data, 1);
-    data->deleted = TRUE;
+       data = p_new(ptxn->pool,
+                    struct push_notification_event_mailboxdelete_data, 1);
+       data->deleted = TRUE;
 
-    push_notification_txn_mbox_set_eventdata(ptxn, mbox, ec, data);
+       push_notification_txn_mbox_set_eventdata(ptxn, mbox, ec, data);
 }
 
-
 /* Event definition */
 
 extern struct push_notification_event push_notification_event_mailboxdelete;
 
 struct push_notification_event push_notification_event_mailboxdelete = {
-    .name = EVENT_NAME,
-    .mbox = {
-        .debug_mbox = push_notification_event_mailboxdelete_debug_mbox
-    },
-    .mbox_triggers = {
-        .delete = push_notification_event_mailboxdelete_event
-    }
+       .name = EVENT_NAME,
+       .mbox = {
+               .debug_mbox = push_notification_event_mailboxdelete_debug_mbox,
+       },
+       .mbox_triggers = {
+               .delete = push_notification_event_mailboxdelete_event,
+       },
 };