[svn-commits] russell: branch 1.4 r297228 - /branches/1.4/apps/app_meetme.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Dec 2 07:16:22 CST 2010


Author: russell
Date: Thu Dec  2 07:16:15 2010
New Revision: 297228

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=297228
Log:
Add "DAHDI" to a couple of app_meetme error messages.

This is in response to some questions on IRC.  To the user, there was nothing
that made it obvious that this error had anything to do with DAHDI not being
loaded.

Modified:
    branches/1.4/apps/app_meetme.c

Modified: branches/1.4/apps/app_meetme.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/apps/app_meetme.c?view=diff&rev=297228&r1=297227&r2=297228
==============================================================================
--- branches/1.4/apps/app_meetme.c (original)
+++ branches/1.4/apps/app_meetme.c Thu Dec  2 07:16:15 2010
@@ -826,7 +826,7 @@
 	ztc.confmode = DAHDI_CONF_CONFANN | DAHDI_CONF_CONFANNMON;
 	cnf->fd = open(DAHDI_FILE_PSEUDO, O_RDWR);
 	if (cnf->fd < 0 || ioctl(cnf->fd, DAHDI_SETCONF, &ztc)) {
-		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);
 		free(cnf);
@@ -1807,7 +1807,7 @@
 		/* open pseudo in non-blocking mode */
 		fd = open(DAHDI_FILE_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;




More information about the svn-commits mailing list