dect
/
asterisk
Archived
13
0
Fork 0

Meetme whitespace changes (bug #5615)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6969 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2005-11-06 04:52:44 +00:00
parent 6c8b0c0fa1
commit 40c19638fc
1 changed files with 5 additions and 5 deletions

View File

@ -512,13 +512,13 @@ static int conf_cmd(int fd, int argc, char **argv) {
}
if (argc == 1) {
/* 'MeetMe': List all the conferences */
now = time(NULL);
now = time(NULL);
cnf = confs;
if (!cnf) {
ast_cli(fd, "No active MeetMe conferences.\n");
return RESULT_SUCCESS;
}
ast_cli(fd, header_format, "Conf Num", "Parties", "Marked", "Activity", "Creation");
ast_cli(fd, "No active MeetMe conferences.\n");
return RESULT_SUCCESS;
}
ast_cli(fd, header_format, "Conf Num", "Parties", "Marked", "Activity", "Creation");
while(cnf) {
if (cnf->markedusers == 0)
strcpy(cmdline, "N/A ");