Displaying 1 result from an estimated 1 matches for "parkingnum".
2003 Jul 03
1
res parking patch
...else
+ parkinglot = pu->next;
+ break;
+ }
+ pl = pu;
+ pu = pu->next;
+ }
+ }
+ else {
+ ast_log(LOG_NOTICE,"Normally picking up a parked call!\n");
+ while(pu) {
if (pu->parkingnum == park) {
if (pl)
pl->next = pu->next;
@@ -517,6 +534,7 @@
}
pl = pu;
pu = pu->next;
+ }
}
ast_pthread_mutex_unlock(&parking_lock);
if (pu) {
@@ -611,6 +629,8 @@
while(var) {
if (!strcasecmp(var->name, "parkext")) {
strncpy(parking_e...