Index: pbx/pbx_loopback.c =================================================================== --- pbx/pbx_loopback.c (revision 359605) +++ pbx/pbx_loopback.c (working copy) @@ -163,12 +163,12 @@ static struct ast_switch loopback_switch = { - name: "Loopback", - description: "Loopback Dialplan Switch", - exists: loopback_exists, - canmatch: loopback_canmatch, - exec: loopback_exec, - matchmore: loopback_matchmore, + .name = "Loopback", + .description = "Loopback Dialplan Switch", + .exists = loopback_exists, + .canmatch = loopback_canmatch, + .exec = loopback_exec, + .matchmore = loopback_matchmore, }; static int unload_module(void) Index: pbx/pbx_realtime.c =================================================================== --- pbx/pbx_realtime.c (revision 359605) +++ pbx/pbx_realtime.c (working copy) @@ -388,12 +388,12 @@ static struct ast_switch realtime_switch = { - name: "Realtime", - description: "Realtime Dialplan Switch", - exists: realtime_exists, - canmatch: realtime_canmatch, - exec: realtime_exec, - matchmore: realtime_matchmore, + .name = "Realtime", + .description = "Realtime Dialplan Switch", + .exists = realtime_exists, + .canmatch = realtime_canmatch, + .exec = realtime_exec, + .matchmore = realtime_matchmore, }; static int unload_module(void) Index: channels/chan_sip.c =================================================================== --- channels/chan_sip.c (revision 359605) +++ channels/chan_sip.c (working copy) @@ -3060,9 +3060,9 @@ /*! \brief Interface structure with callbacks used to connect to UDPTL module*/ static struct ast_udptl_protocol sip_udptl = { - type: "SIP", - get_udptl_info: sip_get_udptl_peer, - set_udptl_peer: sip_set_udptl_peer, + .type = "SIP", + .get_udptl_info = sip_get_udptl_peer, + .set_udptl_peer = sip_set_udptl_peer, }; static void append_history_full(struct sip_pvt *p, const char *fmt, ...) Index: channels/chan_iax2.c =================================================================== --- channels/chan_iax2.c (revision 359605) +++ channels/chan_iax2.c (working copy) @@ -14036,12 +14036,12 @@ static struct ast_switch iax2_switch = { - name: "IAX2", - description: "IAX Remote Dialplan Switch", - exists: iax2_exists, - canmatch: iax2_canmatch, - exec: iax2_exec, - matchmore: iax2_matchmore, + .name = "IAX2", + .description = "IAX Remote Dialplan Switch", + .exists = iax2_exists, + .canmatch = iax2_canmatch, + .exec = iax2_exec, + .matchmore = iax2_matchmore, }; /* Index: apps/app_milliwatt.c =================================================================== --- apps/app_milliwatt.c (revision 359605) +++ apps/app_milliwatt.c (working copy) @@ -117,9 +117,9 @@ } static struct ast_generator milliwattgen = { - alloc: milliwatt_alloc, - release: milliwatt_release, - generate: milliwatt_generate, + .alloc = milliwatt_alloc, + .release = milliwatt_release, + .generate = milliwatt_generate, }; static int old_milliwatt_exec(struct ast_channel *chan) Index: apps/app_externalivr.c =================================================================== --- apps/app_externalivr.c (revision 359605) +++ apps/app_externalivr.c (working copy) @@ -293,9 +293,9 @@ static struct ast_generator gen = { - alloc: gen_alloc, - release: gen_release, - generate: gen_generate, + .alloc = gen_alloc, + .release = gen_release, + .generate = gen_generate, }; static void ast_eivr_getvariable(struct ast_channel *chan, char *data, char *outbuf, int outbuflen) Index: addons/chan_ooh323.c =================================================================== --- addons/chan_ooh323.c (revision 359605) +++ addons/chan_ooh323.c (working copy) @@ -129,9 +129,9 @@ }; static struct ast_udptl_protocol ooh323_udptl = { - type: "H323", - get_udptl_info: ooh323_get_udptl_peer, - set_udptl_peer: ooh323_set_udptl_peer, + .type = "H323", + .get_udptl_info = ooh323_get_udptl_peer, + .set_udptl_peer = ooh323_set_udptl_peer, }; Index: main/channel.c =================================================================== --- main/channel.c (revision 359605) +++ main/channel.c (working copy) @@ -7691,9 +7691,9 @@ } static struct ast_generator tonepair = { - alloc: tonepair_alloc, - release: tonepair_release, - generate: tonepair_generator, + .alloc = tonepair_alloc, + .release = tonepair_release, + .generate = tonepair_generator, }; int ast_tonepair_start(struct ast_channel *chan, int freq1, int freq2, int duration, int vol) Index: main/app.c =================================================================== --- main/app.c (revision 359605) +++ main/app.c (working copy) @@ -576,9 +576,9 @@ static struct ast_generator linearstream = { - alloc: linear_alloc, - release: linear_release, - generate: linear_generator, + .alloc = linear_alloc, + .release = linear_release, + .generate = linear_generator, }; int ast_linear_stream(struct ast_channel *chan, const char *filename, int fd, int allowoverride) Index: res/res_fax_spandsp.c =================================================================== --- res/res_fax_spandsp.c (revision 359605) +++ res/res_fax_spandsp.c (working copy) @@ -759,9 +759,9 @@ int i; struct ast_channel *peer; static struct ast_generator t30_gen = { - alloc: spandsp_fax_gw_gen_alloc, - release: spandsp_fax_gw_gen_release, - generate: spandsp_fax_gw_t30_gen, + .alloc = spandsp_fax_gw_gen_alloc, + .release = spandsp_fax_gw_gen_release, + .generate = spandsp_fax_gw_t30_gen, }; #if SPANDSP_RELEASE_DATE >= 20081012