git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8184 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale
2008-04-23 21:14:41 +00:00
parent 916c2bf4c7
commit 94e7ad44af
2 changed files with 2 additions and 2 deletions

View File

@@ -169,7 +169,7 @@ char *expand_alias(char *cmd, char *arg)
char *exp = NULL;
switch_core_db_t *db = switch_core_db_handle();
sql = switch_mprintf("select command from aliases where alias='%s'", cmd);
sql = switch_mprintf("select command from aliases where alias='%q' or alias='%q %q'", cmd, cmd, arg);
switch_core_db_exec(db, sql, alias_callback, &r, &errmsg);
if (errmsg) {