Skip to content
Snippets Groups Projects
Commit 5183cbcc authored by Sean Bright's avatar Sean Bright
Browse files

Change intializer types. Found while working on asterisk-cpp. I have a new

favorite error message from g++:

    pbx_dundi.c:4580: sorry, unimplemented: non-trivial designated
                      initializers not supported

I like it when compilers are apologetic.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@169116 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent e0b40036
No related branches found
No related tags found
No related merge requests found
......@@ -4569,14 +4569,13 @@ static int dundi_matchmore(struct ast_channel *chan, const char *context, const
return dundi_helper(chan, context, exten, priority, data, DUNDI_FLAG_MATCHMORE);
}
static struct ast_switch dundi_switch =
{
name: "DUNDi",
description: "DUNDi Discovered Dialplan Switch",
exists: dundi_exists,
canmatch: dundi_canmatch,
exec: dundi_exec,
matchmore: dundi_matchmore,
static struct ast_switch dundi_switch = {
.name = "DUNDi",
.description = "DUNDi Discovered Dialplan Switch",
.exists = dundi_exists,
.canmatch = dundi_canmatch,
.exec = dundi_exec,
.matchmore = dundi_matchmore,
};
static int set_config(char *config_file, struct sockaddr_in* sin, int reload)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment