Add musiconhold definitions to show agents

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1181 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer 2003-07-14 04:21:00 +00:00
parent 4e6c02b6ad
commit 94f7087311
1 changed files with 5 additions and 2 deletions

View File

@ -718,6 +718,7 @@ static int agents_show(int fd, int argc, char **argv)
char username[256];
char location[256];
char talkingto[256];
char moh[256];
if (argc != 2)
return RESULT_SHOWUSAGE;
@ -751,8 +752,10 @@ static int agents_show(int fd, int argc, char **argv)
strcpy(location, "not logged in");
strcpy(talkingto, "");
}
ast_cli(fd, "%-12.12s %s%s%s\n", p->agent,
username, location, talkingto);
if (strlen(p->moh))
snprintf(moh, sizeof(moh), "(musiconhold is '%s')", p->moh);
ast_cli(fd, "%-12.12s %s%s%s%s\n", p->agent,
username, location, talkingto, moh);
}
ast_pthread_mutex_unlock(&p->lock);
p = p->next;