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

index 2c339cb97a6792b66e52cfd0f6ae8f18cb99f7e1..0bcd10140258a0095cd763255f0ca801d5194bd6 100644 (file)
@@ -8,41 +8,41 @@
 #include "push-notification-event-mailboxsubscribe.h"
 #include "push-notification-txn-mbox.h"
 
-
 #define EVENT_NAME "MailboxSubscribe"
 
-
-static void push_notification_event_mailboxsubscribe_debug_mbox
-(struct push_notification_txn_event *event ATTR_UNUSED)
+static void
+push_notification_event_mailboxsubscribe_debug_mbox(
+       struct push_notification_txn_event *event ATTR_UNUSED)
 {
-    i_debug("%s: Mailbox was subscribed to", EVENT_NAME);
+       i_debug("%s: Mailbox was subscribed to", EVENT_NAME);
 }
 
-static void push_notification_event_mailboxsubscribe_event(
-    struct push_notification_txn *ptxn,
-    struct push_notification_event_config *ec,
-    struct push_notification_txn_mbox *mbox)
+static void
+push_notification_event_mailboxsubscribe_event(
+       struct push_notification_txn *ptxn,
+       struct push_notification_event_config *ec,
+       struct push_notification_txn_mbox *mbox)
 {
-    struct push_notification_event_mailboxsubscribe_data *data;
+       struct push_notification_event_mailboxsubscribe_data *data;
 
-    data = p_new(ptxn->pool,
-                 struct push_notification_event_mailboxsubscribe_data, 1);
-    data->subscribe = TRUE;
+       data = p_new(ptxn->pool,
+                    struct push_notification_event_mailboxsubscribe_data, 1);
+       data->subscribe = 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_mailboxsubscribe;
 
 struct push_notification_event push_notification_event_mailboxsubscribe = {
-    .name = EVENT_NAME,
-    .mbox = {
-        .debug_mbox = push_notification_event_mailboxsubscribe_debug_mbox
-    },
-    .mbox_triggers = {
-        .subscribe = push_notification_event_mailboxsubscribe_event
-    }
+       .name = EVENT_NAME,
+       .mbox = {
+               .debug_mbox =
+                       push_notification_event_mailboxsubscribe_debug_mbox,
+       },
+       .mbox_triggers = {
+               .subscribe = push_notification_event_mailboxsubscribe_event,
+       },
 };