used || instead of 'or' in sql stmt

This commit is contained in:
Anthony Minessale 2010-10-27 11:46:39 -05:00
parent 6ae933a2e9
commit 91230e01f9
1 changed files with 1 additions and 1 deletions

View File

@ -627,7 +627,7 @@ static void actual_sofia_presence_event_handler(switch_event_t *event)
"from sip_dialogs " "from sip_dialogs "
"where (presence_id='%q@%q' or " "where (presence_id='%q@%q' or "
"(sip_from_user='%q' and (sip_from_host='%q' || sip_to_host='%q')))", "(sip_from_user='%q' and (sip_from_host='%q' or sip_to_host='%q')))",
dh.status, dh.rpid, probe_euser, probe_host, probe_euser, probe_host, probe_host); dh.status, dh.rpid, probe_euser, probe_host, probe_euser, probe_host, probe_host);