[Asterisk-cvs] asterisk/res res_features.c,1.17,1.18

markster at lists.digium.com markster at lists.digium.com
Sun Oct 3 00:18:12 CDT 2004


Update of /usr/cvsroot/asterisk/res
In directory mongoose.digium.com:/tmp/cvs-serv7037/res

Modified Files:
	res_features.c 
Log Message:
Major PBX revamps (including labels, update examples)


Index: res_features.c
===================================================================
RCS file: /usr/cvsroot/asterisk/res/res_features.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- res_features.c	2 Oct 2004 00:58:31 -0000	1.17
+++ res_features.c	3 Oct 2004 04:19:59 -0000	1.18
@@ -241,7 +241,7 @@
 			}
 			if (con) {
 				snprintf(exten, sizeof(exten), "%d", x);
-				ast_add_extension2(con, 1, exten, 1, NULL, parkedcall, strdup(exten), free, registrar);
+				ast_add_extension2(con, 1, exten, 1, NULL, NULL, parkedcall, strdup(exten), free, registrar);
 			}
 			return 0;
 		} else {
@@ -930,7 +930,7 @@
 			return -1;
 		}
 	}
-	ast_add_extension2(con, 1, ast_parking_ext(), 1, NULL, parkcall, strdup(""),free, registrar);
+	ast_add_extension2(con, 1, ast_parking_ext(), 1, NULL, NULL, parkcall, strdup(""),free, registrar);
 	ast_pthread_create(&parking_thread, NULL, do_parking_thread, NULL);
 	res = ast_register_application(parkedcall, park_exec, synopsis, descrip);
 	if (!res)




More information about the svn-commits mailing list