[svn-commits] trunk r32697 - /trunk/apps/app_followme.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Tue Jun 6 13:37:51 MST 2006
Author: russell
Date: Tue Jun 6 15:37:51 2006
New Revision: 32697
URL: http://svn.digium.com/view/asterisk?rev=32697&view=rev
Log:
move a declaration to the beginning of a block
Modified:
trunk/apps/app_followme.c
Modified: trunk/apps/app_followme.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_followme.c?rev=32697&r1=32696&r2=32697&view=diff
==============================================================================
--- trunk/apps/app_followme.c (original)
+++ trunk/apps/app_followme.c Tue Jun 6 15:37:51 2006
@@ -848,8 +848,8 @@
outbound->cdr = ast_cdr_alloc();
}
if (outbound->cdr) {
+ char tmp[256];
ast_cdr_init(outbound->cdr, outbound);
- char tmp[256];
snprintf(tmp, 256, "%s/%s", "Local", dialarg);
ast_cdr_setapp(outbound->cdr,"FollowMe",tmp);
ast_cdr_update(outbound);
More information about the svn-commits
mailing list