summaryrefslogtreecommitdiff
path: root/channels/chan_zap.c
diff options
context:
space:
mode:
authorMartin Pycko <martinp@digium.com>2003-12-18 16:01:08 +0000
committerMartin Pycko <martinp@digium.com>2003-12-18 16:01:08 +0000
commit60d1f9cf45cca7ccced3b923f2ba2f503931ef35 (patch)
tree0e587e1d3a1a3fbf4c12e7009e5e909d67312481 /channels/chan_zap.c
parenta41fc6bbf9f799ba44ee1bb336a3c41ff945d207 (diff)
Change long variable name to the shorter one
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1862 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_zap.c')
-rwxr-xr-xchannels/chan_zap.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index d3153bc11..c3fd812c4 100755
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -136,7 +136,7 @@ static char language[MAX_LANGUAGE] = "";
static char musicclass[MAX_LANGUAGE] = "";
static int use_callerid = 1;
-static int useincomingcalleridonzaptransfer = 0;
+static int zaptrcallerid = 0;
static int cur_signalling = -1;
static unsigned int cur_group = 0;
@@ -456,7 +456,7 @@ static struct zt_pvt {
int resetting;
int prioffset;
int alreadyhungup;
- int useincomingcalleridonzaptransfer;
+ int zaptrcallerid; /* should we use the callerid from incoming call on zap transfer or not */
#ifdef PRI_EVENT_PROCEEDING
int proceeding;
#endif
@@ -3024,7 +3024,7 @@ static struct ast_frame *zt_handle_event(struct ast_channel *ast)
} else if (!p->subs[SUB_THREEWAY].owner) {
char callerid[256];
if (p->threewaycalling && !check_for_conference(p)) {
- if (p->useincomingcalleridonzaptransfer && p->owner)
+ if (p->zaptrcallerid && p->owner)
strncpy(callerid, p->owner->callerid, sizeof(callerid) - 1);
/* XXX This section needs much more error checking!!! XXX */
/* Start a 3-way call if feasible */
@@ -3034,7 +3034,7 @@ static struct ast_frame *zt_handle_event(struct ast_channel *ast)
if (!alloc_sub(p, SUB_THREEWAY)) {
/* Make new channel */
chan = zt_new(p, AST_STATE_RESERVED, 0, SUB_THREEWAY, 0, 0);
- if (p->useincomingcalleridonzaptransfer) {
+ if (p->zaptrcallerid) {
if (!p->origcallerid) {
p->origcallerid = malloc(strlen(p->callerid) + 1);
strncpy(p->origcallerid, p->callerid, strlen(p->callerid) + 1);
@@ -5319,7 +5319,7 @@ static struct zt_pvt *mkintf(int channel, int signalling, int radio)
tmp->channel = channel;
tmp->stripmsd = stripmsd;
tmp->use_callerid = use_callerid;
- tmp->useincomingcalleridonzaptransfer = useincomingcalleridonzaptransfer;
+ tmp->zaptrcallerid = zaptrcallerid;
tmp->restrictcid = restrictcid;
tmp->use_callingpres = use_callingpres;
strncpy(tmp->accountcode, accountcode, sizeof(tmp->accountcode)-1);
@@ -7161,7 +7161,7 @@ static int setup_zap(void)
else
strncpy(callerid, v->value, sizeof(callerid)-1);
} else if (!strcasecmp(v->name, "useincomingcalleridonzaptransfer")) {
- useincomingcalleridonzaptransfer = ast_true(v->value);
+ zaptrcallerid = ast_true(v->value);
} else if (!strcasecmp(v->name, "restrictcid")) {
restrictcid = ast_true(v->value);
} else if (!strcasecmp(v->name, "usecallingpres")) {