summaryrefslogtreecommitdiff
path: root/main/channel.c
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2006-12-15 04:03:42 +0000
committerLuigi Rizzo <rizzo@icir.org>2006-12-15 04:03:42 +0000
commit112262198185c249a948bdb91d86427a909f781b (patch)
tree3e68f630a80e726d516dfe27e4273daf35494bf7 /main/channel.c
parent5ba11f985516c84d6dd326a2d61f52ba54ae7de4 (diff)
constify ast_state2str() and note it is not reentrant.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48477 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/channel.c')
-rw-r--r--main/channel.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/main/channel.c b/main/channel.c
index ac59eb352..07d099c6a 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -516,8 +516,10 @@ int ast_str2cause(const char *name)
return -1;
}
-/*! \brief Gives the string form of a given channel state */
-char *ast_state2str(enum ast_channel_state state)
+/*! \brief Gives the string form of a given channel state.
+ \note This function is not reentrant.
+ */
+const char *ast_state2str(enum ast_channel_state state)
{
char *buf;