Displaying 1 result from an estimated 1 matches for "parking_pick".
2003 Jul 03
1
res parking patch
...next part --------------
--- asterisk/res/res_parking.c 2003-07-02 16:06:12.000000000 +0200
+++ myasterisk/res/res_parking.c 2003-07-03 23:28:52.000000000 +0200
@@ -49,6 +49,7 @@
/* Extension you type to park the call */
static char parking_ext[AST_MAX_EXTENSION] = "700";
+static char parking_pick[AST_MAX_EXTENSION] = "750";
static char pickup_ext[AST_MAX_EXTENSION] = "*8";
@@ -507,7 +508,23 @@
park = atoi((char *)data);
ast_pthread_mutex_lock(&parking_lock);
pu = parkinglot;
- while(pu) {
+ if (park == atoi((char *)parking_pick)) {
+ ast_log(LOG_NOTICE,&qu...