summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorMichiel van Baak <michiel@vanbaak.info>2008-02-18 19:47:40 +0000
committerMichiel van Baak <michiel@vanbaak.info>2008-02-18 19:47:40 +0000
commitf7370d48315431127228288a1bc15a42c2dfbb38 (patch)
treee6f9d91308df9926a5662dc148366fe09f28a24e /main
parent2c3c489adec8e3daaaa70d8fb681084a0c7fb114 (diff)
make the output of 'core show settings' a bit nicer.
(closes issue #12020) Reported by: seanbright Patches: asterisk.c.patch uploaded by seanbright (license 71) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@103783 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-rw-r--r--main/asterisk.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/main/asterisk.c b/main/asterisk.c
index 5d518919f..1c15dab29 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -395,18 +395,18 @@ static char *handle_show_settings(struct ast_cli_entry *e, int cmd, struct ast_c
ast_cli(a->fd, "-----------------\n");
ast_cli(a->fd, " Version: %s\n", ast_get_version());
if (option_maxcalls)
- ast_cli(a->fd, " Max. calls: %d (Current %d)\n", option_maxcalls, ast_active_channels());
+ ast_cli(a->fd, " Maximum calls: %d (Current %d)\n", option_maxcalls, ast_active_channels());
else
- ast_cli(a->fd, " Max. calls: Not set\n");
+ ast_cli(a->fd, " Maximum calls: Not set\n");
if (option_maxfiles)
- ast_cli(a->fd, " Max. open file handles: %d\n", option_maxfiles);
+ ast_cli(a->fd, " Maximum open file handles: %d\n", option_maxfiles);
else
- ast_cli(a->fd, " Max. open file handles: Not set\n");
+ ast_cli(a->fd, " Maximum open file handles: Not set\n");
ast_cli(a->fd, " Verbosity: %d\n", option_verbose);
ast_cli(a->fd, " Debug level: %d\n", option_debug);
- ast_cli(a->fd, " Max load avg: %lf\n", option_maxload);
+ ast_cli(a->fd, " Maximum load average: %lf\n", option_maxload);
#if defined(HAVE_SYSINFO)
- ast_cli(a->fd, " Min Free Memory: %ld MB\n", option_minmemfree);
+ ast_cli(a->fd, " Minimum free memory: %ld MB\n", option_minmemfree);
#endif
if (ast_localtime(&ast_startuptime, &tm, NULL)) {
ast_strftime(buf, sizeof(buf), "%H:%M:%S", &tm);