Merged revisions 131484 via svnmerge from

https://origsvn.digium.com/svn/asterisk/trunk

........
r131484 | bbryant | 2008-07-16 16:54:08 -0500 (Wed, 16 Jul 2008) | 4 lines

Fixes sysinfo operator issue also fixed elsewhere in r131445.

(issue #13057)

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@131486 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Brett Bryant
2008-07-16 21:54:38 +00:00
parent c252f7f4eb
commit 19700017e1

View File

@@ -60,15 +60,15 @@ static int sysinfo_helper(struct ast_channel *chan, const char *cmd, char *data,
else if (!strcasecmp("uptime", data)) { /* in hours */ else if (!strcasecmp("uptime", data)) { /* in hours */
snprintf(buf, len, "%ld", sys_info.uptime/3600); snprintf(buf, len, "%ld", sys_info.uptime/3600);
} else if (!strcasecmp("totalram", data)) { /* in KiB */ } else if (!strcasecmp("totalram", data)) { /* in KiB */
snprintf(buf, len, "%ld",(sys_info.totalram / sys_info.mem_unit)/1024); snprintf(buf, len, "%ld",(sys_info.totalram * sys_info.mem_unit)/1024);
} else if (!strcasecmp("freeram", data)) { /* in KiB */ } else if (!strcasecmp("freeram", data)) { /* in KiB */
snprintf(buf, len, "%ld",(sys_info.freeram / sys_info.mem_unit)/1024); snprintf(buf, len, "%ld",(sys_info.freeram * sys_info.mem_unit)/1024);
} else if (!strcasecmp("bufferram", data)) { /* in KiB */ } else if (!strcasecmp("bufferram", data)) { /* in KiB */
snprintf(buf, len, "%ld",(sys_info.bufferram / sys_info.mem_unit)/1024); snprintf(buf, len, "%ld",(sys_info.bufferram * sys_info.mem_unit)/1024);
} else if (!strcasecmp("totalswap", data)) { /* in KiB */ } else if (!strcasecmp("totalswap", data)) { /* in KiB */
snprintf(buf, len, "%ld",(sys_info.totalswap / sys_info.mem_unit)/1024); snprintf(buf, len, "%ld",(sys_info.totalswap * sys_info.mem_unit)/1024);
} else if (!strcasecmp("freeswap", data)) { /* in KiB */ } else if (!strcasecmp("freeswap", data)) { /* in KiB */
snprintf(buf, len, "%ld",(sys_info.freeswap / sys_info.mem_unit)/1024); snprintf(buf, len, "%ld",(sys_info.freeswap * sys_info.mem_unit)/1024);
} else if (!strcasecmp("numprocs", data)) { } else if (!strcasecmp("numprocs", data)) {
snprintf(buf, len, "%d", sys_info.procs); snprintf(buf, len, "%d", sys_info.procs);
} }