summaryrefslogtreecommitdiff
path: root/apps/app_directed_pickup.c
diff options
context:
space:
mode:
authorMichiel van Baak <michiel@vanbaak.info>2008-02-09 11:27:10 +0000
committerMichiel van Baak <michiel@vanbaak.info>2008-02-09 11:27:10 +0000
commit4dccb58fb7f8fd8a2a0e5dba0f4d58b39c277022 (patch)
treee41e80e4e3a91bbae96d141e8300a25335865986 /apps/app_directed_pickup.c
parent9d4d240b941e547912438487d5b91567803da743 (diff)
whitespace fixes only.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@103249 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_directed_pickup.c')
-rw-r--r--apps/app_directed_pickup.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/app_directed_pickup.c b/apps/app_directed_pickup.c
index 07d81c869..e0de73d3a 100644
--- a/apps/app_directed_pickup.c
+++ b/apps/app_directed_pickup.c
@@ -93,8 +93,8 @@ static int pickup_by_exten(struct ast_channel *chan, const char *exten, const ch
while ((target = ast_channel_walk_locked(target))) {
if ((!strcasecmp(target->macroexten, exten) || !strcasecmp(target->exten, exten)) &&
- !strcasecmp(target->dialcontext, context) &&
- can_pickup(target)) {
+ !strcasecmp(target->dialcontext, context) &&
+ can_pickup(target)) {
res = pickup_do(chan, target);
ast_channel_unlock(target);
break;
@@ -114,8 +114,8 @@ static int pickup_by_mark(struct ast_channel *chan, const char *mark)
while ((target = ast_channel_walk_locked(target))) {
if ((tmp = pbx_builtin_getvar_helper(target, PICKUPMARK)) &&
- !strcasecmp(tmp, mark) &&
- can_pickup(target)) {
+ !strcasecmp(tmp, mark) &&
+ can_pickup(target)) {
res = pickup_do(chan, target);
ast_channel_unlock(target);
break;
@@ -160,7 +160,7 @@ static int unload_module(void)
int res;
res = ast_unregister_application(app);
-
+
return res;
}