summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-10-07 19:57:50 +0000
committerMark Spencer <markster@digium.com>2004-10-07 19:57:50 +0000
commited62f449a99e97522dcf60cd9f3b378a35f9f681 (patch)
tree89532a9b97c1cd3fdab1835ab275faf4b3f79ffc /apps
parente1038e309054656a01d620aba39f38d9f29a36e3 (diff)
Oops, we have to be able to pass multiple restrictions for when we go to voicemail...
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3937 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_realtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_realtime.c b/apps/app_realtime.c
index 0523756a4..53f2fac8e 100755
--- a/apps/app_realtime.c
+++ b/apps/app_realtime.c
@@ -109,7 +109,7 @@ static int realtime_exec(struct ast_channel *chan, void *data)
} else {
if (option_verbose > 3)
ast_verbose(VERBOSE_PREFIX_4"Realtime Lookup: family:'%s' colmatch:'%s' value:'%s'\n",family,colmatch,value);
- if ((var = ast_load_realtime(family, colmatch, value))) {
+ if ((var = ast_load_realtime(family, colmatch, value, NULL))) {
for (itt = var; itt; itt = itt->next) {
if(prefix) {
len = strlen(prefix) + strlen(itt->name) + 2;