Greetings all, 

                   This is a "just-for-fun" question.   I was reading the
support forum and a fellow there wanted Read() to stop on * instead of #.  I
thought that changing app_read.c would resolve this

 

current

if (tmp[x-1] == '#') { 
tmp[x-1] = '\0'; 
break;

 

new 
}if (tmp[x-1] == '*') { 
tmp[x-1] = '\0'; 
break; 
}

 

He applied and recompiled, but no joy. Any ideas why?

 

 

Danny Nicholas

_______________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to