Skip to content

Commit

Permalink
httpd: align functions export to new format
Browse files Browse the repository at this point in the history
  • Loading branch information
rvlad-patrascu committed Apr 2, 2019
1 parent 9ee86b4 commit 3923523
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions modules/httpd/httpd.c
Expand Up @@ -79,10 +79,9 @@ static param_export_t params[] = {
};

/** Exported functions */
static cmd_export_t cmds[]=
{
{"httpd_bind", (cmd_function)httpd_bind, 1, 0, 0, 0},
{NULL, NULL, 0, 0, 0, 0}
static cmd_export_t cmds[] = {
{"httpd_bind", (cmd_function)httpd_bind, {{0,0,0}}, 0},
{0,0,{{0,0,0}},0}
};

/** MI commands */
Expand Down

0 comments on commit 3923523

Please sign in to comment.