aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-06 21:08:07 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-06 21:08:07 +0000
commitcb330ab862c027a2263c416e54daf0f7beee00c1 (patch)
treebc6a07df3f602a91ef86251751940d2bc83113eb /include
parent923c1c330007b44b4a76441c6f0a5b65ae03a732 (diff)
Constify the return values of ast_parking_ext() and ast_pickup_ext()
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@67853 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/features.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asterisk/features.h b/include/asterisk/features.h
index 1a5d760f3..5e9d5f3d2 100644
--- a/include/asterisk/features.h
+++ b/include/asterisk/features.h
@@ -73,10 +73,10 @@ int ast_masq_park_call(struct ast_channel *rchan, struct ast_channel *host, int
/*! \brief Determine system parking extension
* Returns the call parking extension for drivers that provide special
call parking help */
-char *ast_parking_ext(void);
+const char *ast_parking_ext(void);
/*! \brief Determine system call pickup extension */
-char *ast_pickup_ext(void);
+const char *ast_pickup_ext(void);
/*! \brief Bridge a call, optionally allowing redirection */
int ast_bridge_call(struct ast_channel *chan, struct ast_channel *peer,struct ast_bridge_config *config);