A few misses from constification

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43366 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2006-09-20 20:57:57 +00:00
parent 8c16600b0d
commit d70fe791c2
3 changed files with 6 additions and 6 deletions

View File

@@ -149,7 +149,7 @@ AST_APP_OPTIONS(followme_opts, {
static int ynlongest = 0;
static time_t start_time, answer_time, end_time;
static char *featuredigittostr;
static const char *featuredigittostr;
static int featuredigittimeout = 5000; /*!< Feature Digit Timeout */
static const char *defaultmoh = "default"; /*!< Default Music-On-Hold Class */
@@ -288,9 +288,9 @@ static int reload_followme(void)
int timeout;
char *timeoutstr;
int numorder;
char *takecallstr;
char *declinecallstr;
char *tmpstr;
const char *takecallstr;
const char *declinecallstr;
const char *tmpstr;
cfg = ast_config_load("followme.conf");
if (!cfg) {