[asterisk-commits] trunk r9239 - in /trunk: ./ channels/chan_oss.c logger.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Wed Feb 8 16:14:18 MST 2006


Author: mogorman
Date: Wed Feb  8 17:14:17 2006
New Revision: 9239

URL: http://svn.digium.com/view/asterisk?rev=9239&view=rev
Log:
Merged revisions 9232 via svnmerge from 
https://svn.digium.com/svn/asterisk/branches/1.2

........
r9232 | mogorman | 2006-02-08 16:12:34 -0600 (Wed, 08 Feb 2006) | 4 lines

Make logger report error,warning,notice if logger.conf
not found, also updated chan_oss to give correct
error message if its config file is not found.

........

Modified:
    trunk/   (props changed)
    trunk/channels/chan_oss.c
    trunk/logger.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.

Modified: trunk/channels/chan_oss.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_oss.c?rev=9239&r1=9238&r2=9239&view=diff
==============================================================================
--- trunk/channels/chan_oss.c (original)
+++ trunk/channels/chan_oss.c Wed Feb  8 17:14:17 2006
@@ -1392,6 +1392,9 @@
 			store_config(cfg, ctg);
 		} while ( (ctg = ast_category_browse(cfg, ctg)) != NULL);
 		ast_config_destroy(cfg);
+	} else {
+		 ast_log(LOG_NOTICE, "Unable to load config oss.conf\n");
+		 return -1;
 	}
 	if (find_desc(oss_active) == NULL) {
 		ast_log(LOG_NOTICE, "Device %s not found\n", oss_active);

Modified: trunk/logger.c
URL: http://svn.digium.com/view/asterisk/trunk/logger.c?rev=9239&r1=9238&r2=9239&view=diff
==============================================================================
--- trunk/logger.c (original)
+++ trunk/logger.c Wed Feb  8 17:14:17 2006
@@ -314,9 +314,18 @@
 	
 	cfg = ast_config_load("logger.conf");
 	
-	/* If no config file, we're fine */
-	if (!cfg)
+	/* If no config file, we're fine, set default options. */
+	if (!cfg) {
+		fprintf(stderr, "Unable to open logger.conf: %s\n", strerror(errno));
+		chan = malloc(sizeof(struct logchannel));
+		memset(chan, 0, sizeof(struct logchannel));
+		chan->type = LOGTYPE_CONSOLE;
+		chan->logmask = 28; /*warning,notice,error */
+		chan->next = logchannels;
+		logchannels = chan;
+		global_logmask |= chan->logmask;
 		return;
+	}
 	
 	ast_mutex_lock(&loglock);
 	if ((s = ast_variable_retrieve(cfg, "general", "appendhostname"))) {



More information about the asterisk-commits mailing list