]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
dialplan: Add one static and fix two whitespace errors.
authorAlexander Traud <pabstraud@compuserve.com>
Wed, 25 Aug 2021 14:29:09 +0000 (16:29 +0200)
committerAlexander Traud <pabstraud@compuserve.com>
Wed, 25 Aug 2021 14:31:51 +0000 (09:31 -0500)
Change-Id: Ia14d515ab63e773097adc6af772ca7123a392f83

res/res_calendar.c
res/res_fax.c

index f629e3d020f43ab3dcf3cc2e80b4ca066665760c..95f3e202c78827044d9788dc562f0db993c85df0 100644 (file)
@@ -1112,8 +1112,8 @@ static int calendar_busy_exec(struct ast_channel *chan, const char *cmd, char *d
 }
 
 static struct ast_custom_function calendar_busy_function = {
-    .name = "CALENDAR_BUSY",
-    .read = calendar_busy_exec,
+       .name = "CALENDAR_BUSY",
+       .read = calendar_busy_exec,
 };
 
 static int add_event_to_list(struct eventlist *events, struct ast_calendar_event *event, time_t start, time_t end)
@@ -1297,8 +1297,8 @@ static int calendar_query_exec(struct ast_channel *chan, const char *cmd, char *
 }
 
 static struct ast_custom_function calendar_query_function = {
-    .name = "CALENDAR_QUERY",
-    .read = calendar_query_exec,
+       .name = "CALENDAR_QUERY",
+       .read = calendar_query_exec,
 };
 
 static void calendar_join_attendees(struct ast_calendar_event *event, char *buf, size_t len)
index 9619afaa19ccbb82142a68d762289193944a0c83..be7f5092a52c874c197ddb4923dfddb30402ff9a 100644 (file)
@@ -4739,7 +4739,7 @@ static int acf_faxopt_write(struct ast_channel *chan, const char *cmd, char *dat
 }
 
 /*! \brief FAXOPT dialplan function */
-struct ast_custom_function acf_faxopt = {
+static struct ast_custom_function acf_faxopt = {
        .name = "FAXOPT",
        .read = acf_faxopt_read,
        .write = acf_faxopt_write,