mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-21 01:01:02 +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:
4
cli.c
4
cli.c
@@ -360,7 +360,7 @@ static int handle_showuptime(int fd, int argc, char *argv[])
|
||||
if (ast_startuptime) {
|
||||
tmptime = curtime - ast_startuptime;
|
||||
if (printsec) {
|
||||
ast_cli(fd, "System uptime: %lu\n",tmptime);
|
||||
ast_cli(fd, "System uptime: %lu\n",(u_long)tmptime);
|
||||
} else {
|
||||
timestr = format_uptimestr(tmptime);
|
||||
if (timestr) {
|
||||
@@ -372,7 +372,7 @@ static int handle_showuptime(int fd, int argc, char *argv[])
|
||||
if (ast_lastreloadtime) {
|
||||
tmptime = curtime - ast_lastreloadtime;
|
||||
if (printsec) {
|
||||
ast_cli(fd, "Last reload: %lu\n", tmptime);
|
||||
ast_cli(fd, "Last reload: %lu\n", (u_long) tmptime);
|
||||
} else {
|
||||
timestr = format_uptimestr(tmptime);
|
||||
if ((timestr) && (!printsec)) {
|
||||
|
||||
Reference in New Issue
Block a user