Make sure that ${LINE} is set even if linenumber is not set in users.conf

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@114080 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.1
Terry Wilson 18 years ago
parent 9a1b485100
commit ef8007f630

@ -731,7 +731,10 @@ static struct extension *build_extension(struct ast_config *cfg, const char *nam
} else if (i == PP_TIMEZONE) {
/* perfectly ok if tmp is NULL, will set variables based on server's time zone */
set_timezone_variables(exten->headp, tmp);
} else if (i == PP_LINENUMBER && tmp) {
} else if (i == PP_LINENUMBER) {
if (!tmp) {
tmp = "1";
}
exten->index = atoi(tmp);
}

Loading…
Cancel
Save