these functions never should have been non-static or in a header file

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43313 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
Kevin P. Fleming 19 years ago
parent 32d119746c
commit 505c465a3b

@ -63,8 +63,4 @@ int ast_monitor_pause(struct ast_channel *chan);
/* Unpause monitoring of a channel */
int ast_monitor_unpause(struct ast_channel *chan);
int pause_monitor_exec(struct ast_channel *chan, void *data);
int unpause_monitor_exec(struct ast_channel *chan, void *data);
#endif /* _ASTERISK_MONITOR_H */

@ -323,12 +323,12 @@ int ast_monitor_unpause(struct ast_channel *chan)
return ast_monitor_set_state(chan, AST_MONITOR_RUNNING);
}
int pause_monitor_exec(struct ast_channel *chan, void *data)
static int pause_monitor_exec(struct ast_channel *chan, void *data)
{
return ast_monitor_pause(chan);
}
int unpause_monitor_exec(struct ast_channel *chan, void *data)
static int unpause_monitor_exec(struct ast_channel *chan, void *data)
{
return ast_monitor_unpause(chan);
}

Loading…
Cancel
Save