dect
/
asterisk
Archived
13
0
Fork 0

Fix 'g' flag (bug #3465)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4931 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2005-01-30 17:57:44 +00:00
parent de2ec28672
commit 1ce5e7e0fc
1 changed files with 1 additions and 1 deletions

View File

@ -867,7 +867,7 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
ast_set2_flag(peerflags, strchr(transfer, 'w'), DIAL_MONITOR_IN);
ast_set2_flag(peerflags, strchr(transfer, 'W'), DIAL_MONITOR_OUT);
ast_set2_flag(peerflags, strchr(transfer, 'd'), DIAL_HALT_ON_DTMF);
ast_set2_flag(tmp, strchr(transfer, 'g'), DIAL_GO_ON);
ast_set2_flag(peerflags, strchr(transfer, 'g'), DIAL_GO_ON);
}
strncpy(numsubst, number, sizeof(numsubst)-1);
/* If we're dialing by extension, look at the extension to know what to dial */