aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-17 19:40:29 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-17 19:40:29 +0000
commitcdfb9990ad122b984e00eed53e8f2f7858e3338f (patch)
tree7e225066fa0140f45cb6f8338bcade84fdc30ec1 /res
parenta139ab742b8a9b652bcc6e79f4d195889e5c61f2 (diff)
via 10206, I have added an option (e) to Dial to allow the h exten to get run on peer. Had to upgrade ast_flag stuff to 64 bits to do this.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@75400 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_features.c2
-rw-r--r--res/res_musiconhold.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/res/res_features.c b/res/res_features.c
index 3f71bfadf..c01c11802 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -1318,7 +1318,7 @@ static int ast_feature_interpret(struct ast_channel *chan, struct ast_channel *p
ast_copy_flags(&features, &(config->features_caller), AST_FLAGS_ALL);
else
ast_copy_flags(&features, &(config->features_callee), AST_FLAGS_ALL);
- ast_debug(3, "Feature interpret: chan=%s, peer=%s, sense=%d, features=%d\n", chan->name, peer->name, sense, features.flags);
+ ast_debug(3, "Feature interpret: chan=%s, peer=%s, sense=%d, features=%lld\n", chan->name, peer->name, sense, features.flags);
ast_rwlock_rdlock(&features_lock);
for (x = 0; x < FEATURES_COUNT; x++) {
diff --git a/res/res_musiconhold.c b/res/res_musiconhold.c
index 84a44f3b7..ce0eb8a1e 100644
--- a/res/res_musiconhold.c
+++ b/res/res_musiconhold.c
@@ -138,7 +138,7 @@ struct mohclass {
int allowed_files;
/*! The current number of files loaded into the filearray */
int total_files;
- unsigned int flags;
+ uint64_t flags;
/*! The format from the MOH source, not applicable to "files" mode */
int format;
/*! The pid of the external application delivering MOH */