mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-07-17 12:17:00 +00:00
Merge pull request #2855 from signalwire/verto
[mod_verto] Fix time_t formatting
This commit is contained in:
commit
fed90ac814
@ -1121,7 +1121,7 @@ static switch_bool_t check_auth(jsock_t *jsock, cJSON *params, int *code, char *
|
||||
|
||||
if (tmp > now) {
|
||||
jsock->exptime = tmp;
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Login expire time for %s set to %ld seconds [%ld] [%ld]\n", jsock->uid, tmp - now, jsock->exptime, now);
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Login expire time for %s set to %"TIME_T_FMT" seconds [%"TIME_T_FMT"] [%"TIME_T_FMT"]\n", jsock->uid, (time_t)tmp - now, jsock->exptime, now);
|
||||
} else {
|
||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Invalid expire time for %s. Defaulting to 300 sec\n", jsock->uid);
|
||||
jsock->exptime = now + 300;
|
||||
@ -2005,7 +2005,7 @@ static void client_run(jsock_t *jsock)
|
||||
|
||||
if (now >= jsock->exptime) {
|
||||
switch_set_flag(jsock, JPFLAG_AUTH_EXPIRED);
|
||||
die("%s Authentication Expired [%ld] >= [%ld]\n", jsock->uid, now, jsock->exptime);
|
||||
die("%s Authentication Expired [%"TIME_T_FMT"] >= [%"TIME_T_FMT"]\n", jsock->uid, now, jsock->exptime);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user