aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormartinp <martinp@f38db490-d61c-443f-a65b-d21fe96a405b>2003-12-18 16:01:08 +0000
committermartinp <martinp@f38db490-d61c-443f-a65b-d21fe96a405b>2003-12-18 16:01:08 +0000
commit7196f1cfe44f76cbaf59b6ba2e1841423dff82d5 (patch)
tree0e587e1d3a1a3fbf4c12e7009e5e909d67312481
parent25a5ea387683254db64cd23cfc111fe6016db90b (diff)
Change long variable name to the shorter one
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1862 f38db490-d61c-443f-a65b-d21fe96a405b
-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")) {