Constify the return values of ast_parking_ext() and ast_pickup_ext()

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@67853 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2007-06-06 21:08:07 +00:00
parent 7b75537684
commit 65e8178c2b
2 changed files with 5 additions and 5 deletions

View File

@@ -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);