mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
cast time_t to an int in printf/scanf (issue #5635)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@7634 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -150,8 +150,8 @@ int ast_monitor_start( struct ast_channel *chan, const char *format_spec,
|
||||
while((p = strchr(channel_name, '/'))) {
|
||||
*p = '-';
|
||||
}
|
||||
snprintf(monitor->filename_base, FILENAME_MAX, "%s/%ld-%s",
|
||||
ast_config_AST_MONITOR_DIR, time(NULL),channel_name);
|
||||
snprintf(monitor->filename_base, FILENAME_MAX, "%s/%d-%s",
|
||||
ast_config_AST_MONITOR_DIR, (int)time(NULL),channel_name);
|
||||
monitor->filename_changed = 1;
|
||||
} else {
|
||||
ast_log(LOG_ERROR,"Failed to allocate Memory\n");
|
||||
|
Reference in New Issue
Block a user