aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-30 11:27:56 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-30 11:27:56 +0000
commit1c86efed98036a0edc3be7d42d182579ee57b7d1 (patch)
treed456cf6ac68116f4d01756b4b17ed1ab3a1ed605 /include
parent497d2513ddc1f1977e236b4f54e68f5108fd5f0e (diff)
Constifying the interface to get pvt_ids in the bridge, based on
suggestion from (const char *) Kevin. Thanks! git-svn-id: http://svn.digium.com/svn/asterisk/trunk@101154 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/channel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index c1c9cc211..da48c51de 100644
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -340,7 +340,7 @@ struct ast_channel_tech {
int (* set_base_channel)(struct ast_channel *chan, struct ast_channel *base);
/*! \brief Get the unique identifier for the PVT, i.e. SIP call-ID for SIP */
- char * (* get_pvt_uniqueid)(struct ast_channel *chan);
+ const char * (* get_pvt_uniqueid)(struct ast_channel *chan);
};
struct ast_epoll_data;