From: Terry Wilson Date: Fri, 11 Apr 2008 22:23:34 +0000 (+0000) Subject: Make sure that ${LINE} is set even if linenumber is not set in users.conf X-Git-Tag: 1.6.2.0-beta1~2497 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ef8007f6300f7cfcd1dae74548396d81ef9a30c5;p=thirdparty%2Fasterisk.git 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 --- diff --git a/res/res_phoneprov.c b/res/res_phoneprov.c index 5e658f5e5b..5d9ec27e3e 100644 --- a/res/res_phoneprov.c +++ b/res/res_phoneprov.c @@ -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); }