Fix small arrangement issue

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3158 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer 2004-06-06 20:47:51 +00:00
parent 0f2e75a257
commit 9c42fa75a4
1 changed files with 4 additions and 2 deletions

View File

@ -6142,9 +6142,11 @@ static struct ast_channel *zt_request(char *type, int format, void *data)
char *stringp=NULL;
stringp=dest;
s = strsep(&stringp, "/");
p = iflist;
if (!strcasecmp(s, "pseudo")) {
/* Special case for pseudo */
x = CHAN_PSEUDO;
channelmatch = x;
}
#ifdef ZAPATA_PRI
else if ((res = sscanf(s, "%d:%d%c%d", &trunkgroup, &crv, &opt, &y)) > 1) {
@ -6171,9 +6173,9 @@ static struct ast_channel *zt_request(char *type, int format, void *data)
else if ((res = sscanf(s, "%d%c%d", &x, &opt, &y)) < 1) {
ast_log(LOG_WARNING, "Unable to determine channel for data %s\n", (char *)data);
return NULL;
} else {
channelmatch = x;
}
channelmatch = x;
p = iflist;
}
/* Search for an unowned channel */
if (ast_mutex_lock(lock)) {