[Home]

Summary:ASTERISK-07237: [patch] See ${RDNIS} via DumpChan()
Reporter:Clod Patry (junky)Labels:
Date Opened:2006-06-26 17:36:27Date Closed:2006-07-02 22:34:59
Priority:MinorRegression?No
Status:Closed/CompleteComponents:Applications/app_dumpchan
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:( 0) dump.diff
( 1) s_or.diff
Description:Currently, the ${RDNIS} is not see with the application DumpChan.
This allow to see that variable, since it's a member from the ast_callerid.

If not set, im just using (N/A), like any other var.
Comments:By: Andrey S Pankov (casper) 2006-06-27 19:10:52

Maybe convert everything to use S_OR?

By: Clod Patry (junky) 2006-06-27 21:19:52

new patch with S_OR with other members from ast_callerid using the S_OR.

By: Andrey S Pankov (casper) 2006-06-29 18:17:33

The only thing here is the formatting:
- S_OR(c->cid.cid_num,"(N/A)"),
+ S_OR(c->cid.cid_num, "(N/A)"),
etc...

By: Russell Bryant (russell) 2006-07-02 22:34:59

added to the trunk, thanks!