From a43b8ec753f9bd5a275f1869206d1c56da08ead3 Mon Sep 17 00:00:00 2001 From: Mark Spencer <markster@digium.com> Date: Thu, 3 Feb 2005 03:30:41 +0000 Subject: [PATCH] REname 'p' option to 'o' (bug #3490) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4955 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_dial.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/app_dial.c b/apps/app_dial.c index 98522ababe..feb06db6e5 100755 --- a/apps/app_dial.c +++ b/apps/app_dial.c @@ -71,8 +71,8 @@ static char *descrip = " making/redirecting the outgoing call. For example, some PSTNs\n" " don't allow callerids from other extensions then the ones\n" " that are assigned to you.\n" -" 'p' -- Preserve the incoming Caller*ID on the outbound leg of the call (old style\n" -" asterisk behavior)\n" +" 'o' -- Original (inbound) Caller*ID should be placed on the outbound leg of the call +" instead of using the destination extension (old style asterisk behavior)\n" " 'r' -- indicate ringing to the calling party, pass no audio until answered.\n" " 'm[(class)]' -- provide hold music to the calling party until answered (optionally\n" " with the specified class.\n" @@ -894,7 +894,7 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags ast_set2_flag(peerflags, strchr(transfer, 'W'), DIAL_MONITOR_OUT); ast_set2_flag(peerflags, strchr(transfer, 'd'), DIAL_HALT_ON_DTMF); ast_set2_flag(peerflags, strchr(transfer, 'g'), DIAL_GO_ON); - ast_set2_flag(peerflags, strchr(transfer, 'p'), DIAL_PRESERVE_CALLERID); + ast_set2_flag(peerflags, strchr(transfer, 'o'), DIAL_PRESERVE_CALLERID); } strncpy(numsubst, number, sizeof(numsubst)-1); /* If we're dialing by extension, look at the extension to know what to dial */ -- GitLab