sillyness
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2213 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
9fedc12934
commit
cfec307cb9
|
@ -2095,7 +2095,7 @@ static void check_expire(time_t now)
|
||||||
char *errmsg;
|
char *errmsg;
|
||||||
|
|
||||||
switch_mutex_lock(globals.reg_mutex);
|
switch_mutex_lock(globals.reg_mutex);
|
||||||
snprintf(sql, sizeof(sql), "select url from sip_registrations where expires > 0 and expires < %" APR_TIME_T_FMT, now);
|
snprintf(sql, sizeof(sql), "select url from sip_registrations where expires > 0 and expires < %ld", (long) now);
|
||||||
switch_core_db_exec(globals.db, sql, del_callback, NULL, &errmsg);
|
switch_core_db_exec(globals.db, sql, del_callback, NULL, &errmsg);
|
||||||
|
|
||||||
if (errmsg) {
|
if (errmsg) {
|
||||||
|
@ -2104,7 +2104,7 @@ static void check_expire(time_t now)
|
||||||
errmsg = NULL;
|
errmsg = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
snprintf(sql, sizeof(sql), "delete from sip_registrations where expires > 0 and expires < %" APR_TIME_T_FMT, now);
|
snprintf(sql, sizeof(sql), "delete from sip_registrations where expires > 0 and expires < %ld", (long) now);
|
||||||
switch_core_db_persistant_execute(globals.db, sql, 1);
|
switch_core_db_persistant_execute(globals.db, sql, 1);
|
||||||
switch_mutex_unlock(globals.reg_mutex);
|
switch_mutex_unlock(globals.reg_mutex);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue