[Asterisk-cvs] asterisk/apps app_dial.c,1.132,1.133
markster at lists.digium.com
markster at lists.digium.com
Sun Jan 30 11:56:13 CST 2005
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv11278/apps
Modified Files:
app_dial.c
Log Message:
Fix 'g' flag (bug #3465)
Index: app_dial.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_dial.c,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -d -r1.132 -r1.133
--- app_dial.c 27 Jan 2005 16:33:12 -0000 1.132
+++ app_dial.c 30 Jan 2005 17:57:44 -0000 1.133
@@ -867,7 +867,7 @@
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 */
More information about the svn-commits
mailing list