aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/app_meetme.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index c2e81a139..c0dcf13e5 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -1215,9 +1215,9 @@ static struct ast_conference *build_conf(const char *confno, const char *pin,
/* if we are creating a conference for a unit test, it is not neccesary
* to open a pseudo channel, so, if we fail continue creating
* the conference. */
- ast_test_status_update(test, "Unable to open pseudo device\n");
+ ast_test_status_update(test, "Unable to open DAHDI pseudo device\n");
} else {
- ast_log(LOG_WARNING, "Unable to open pseudo device\n");
+ ast_log(LOG_WARNING, "Unable to open DAHDI pseudo device\n");
if (cnf->fd >= 0)
close(cnf->fd);
ast_free(cnf);
@@ -2571,7 +2571,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, struc
/* open pseudo in non-blocking mode */
fd = open("/dev/dahdi/pseudo", O_RDWR | O_NONBLOCK);
if (fd < 0) {
- ast_log(LOG_WARNING, "Unable to open pseudo channel: %s\n", strerror(errno));
+ ast_log(LOG_WARNING, "Unable to open DAHDI pseudo channel: %s\n", strerror(errno));
goto outrun;
}
using_pseudo = 1;