summaryrefslogtreecommitdiff
path: root/main/features.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2013-07-17 19:27:26 +0000
committerRichard Mudgett <rmudgett@digium.com>2013-07-17 19:27:26 +0000
commitda1902cdc060763a712bb1586cfca5ec1e9a2c49 (patch)
tree31dd5eaa44a29bf460f87b8c0330a788bbcf8d49 /main/features.c
parent4f29b970206a6dd3a005527d14a7db66c5a75678 (diff)
Remove some completed and no longer relevant BUGBUG notes.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@394600 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/features.c')
-rw-r--r--main/features.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/main/features.c b/main/features.c
index 9128551d8..df8151340 100644
--- a/main/features.c
+++ b/main/features.c
@@ -3216,13 +3216,11 @@ static int setup_bridge_features_builtin(struct ast_bridge_features *features, s
/* Add atxfer and blind transfer. */
if (!builtin_feature_get_exten(chan, "blindxfer", dtmf, sizeof(dtmf))
&& !ast_strlen_zero(dtmf)) {
-/* BUGBUG need to supply a blind transfer structure and destructor to use other than defaults */
res |= ast_bridge_features_enable(features, AST_BRIDGE_BUILTIN_BLINDTRANSFER, dtmf,
NULL, NULL, AST_BRIDGE_HOOK_REMOVE_ON_PULL);
}
if (!builtin_feature_get_exten(chan, "atxfer", dtmf, sizeof(dtmf)) &&
!ast_strlen_zero(dtmf)) {
-/* BUGBUG need to supply an attended transfer structure and destructor to use other than defaults */
res |= ast_bridge_features_enable(features, AST_BRIDGE_BUILTIN_ATTENDEDTRANSFER, dtmf,
NULL, NULL, AST_BRIDGE_HOOK_REMOVE_ON_PULL);
}
@@ -3252,11 +3250,7 @@ static int setup_bridge_features_builtin(struct ast_bridge_features *features, s
NULL, NULL, AST_BRIDGE_HOOK_REMOVE_ON_PULL);
}
-#if 0 /* BUGBUG don't report errors untill all of the builtin features are supported. */
return res ? -1 : 0;
-#else
- return 0;
-#endif
}
struct dynamic_dtmf_hook_run {