--- apps/app_meetme.orig.c 2005-03-22 19:36:41.648129350 -0700 +++ apps/app_meetme.c 2005-03-22 19:40:50.310264665 -0700 @@ -1078,15 +1078,6 @@ ret = 0; break; } else if (((f->frametype == AST_FRAME_DTMF) && (f->subclass == '*') && (confflags & CONFFLAG_STARMENU)) || ((f->frametype == AST_FRAME_DTMF) && menu_active)) { - int oldconfmode = 0; - oldconfmode = ztc.confmode; - ztc.confmode = 0; - if (ioctl(fd, ZT_SETCONF, &ztc)) { - ast_log(LOG_WARNING, "Error setting conference\n"); - close(fd); - ast_mutex_unlock(&conflock); - goto outrun; - } if (musiconhold) { ast_moh_stop(chan); } @@ -1202,13 +1193,6 @@ if (musiconhold) { ast_moh_start(chan, NULL); } - ztc.confmode = oldconfmode; - if (ioctl(fd, ZT_SETCONF, &ztc)) { - ast_log(LOG_WARNING, "Error setting conference\n"); - close(fd); - ast_mutex_unlock(&conflock); - goto outrun; - } conf_flush(fd); } else if (option_debug) { ast_log(LOG_DEBUG, "Got unrecognized frame on channel %s, f->frametype=%d,f->subclass=%d\n",chan->name,f->frametype,f->subclass);