Skip to content
Snippets Groups Projects
Commit 7c371a1a authored by Kinsey Moore's avatar Kinsey Moore
Browse files

Fix compilation on gcc 4.8.1

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@395728 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 9688d2dc
No related branches found
No related tags found
No related merge requests found
......@@ -1347,7 +1347,7 @@ static char *pktccops_gateset(struct ast_cli_entry *e, int cmd, struct ast_cli_a
if (a->argc < 9)
return CLI_SHOWUSAGE;
if (!strncmp(a->argv[2], "null", sizeof(a->argv[2]))) {
if (!strcmp(a->argv[2], "null")) {
cmts = NULL;
} else {
AST_LIST_LOCK(&cmts_list);
......
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