[asterisk-commits] twilson: branch twilson/calendaring r156480 - /team/twilson/calendaring/res/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Nov 12 18:12:13 CST 2008


Author: twilson
Date: Wed Nov 12 18:12:12 2008
New Revision: 156480

URL: http://svn.digium.com/view/asterisk?view=rev&rev=156480
Log:
Minor fixes

Modified:
    team/twilson/calendaring/res/res_caldav.c
    team/twilson/calendaring/res/res_icalendar.c

Modified: team/twilson/calendaring/res/res_caldav.c
URL: http://svn.digium.com/view/asterisk/team/twilson/calendaring/res/res_caldav.c?view=diff&rev=156480&r1=156479&r2=156480
==============================================================================
--- team/twilson/calendaring/res/res_caldav.c (original)
+++ team/twilson/calendaring/res/res_caldav.c Wed Nov 12 18:12:12 2008
@@ -321,7 +321,7 @@
 	struct icaltriggertype trigger;
 
 	if (!(pvt && pvt->owner)) {
-		ast_log(LOG_ERROR, "Require a private structure with an ownenr\n");
+		ast_log(LOG_ERROR, "Require a private structure with an owner\n");
 		return;
 	}
 

Modified: team/twilson/calendaring/res/res_icalendar.c
URL: http://svn.digium.com/view/asterisk/team/twilson/calendaring/res/res_icalendar.c?view=diff&rev=156480&r1=156479&r2=156480
==============================================================================
--- team/twilson/calendaring/res/res_icalendar.c (original)
+++ team/twilson/calendaring/res/res_icalendar.c Wed Nov 12 18:12:12 2008
@@ -317,7 +317,7 @@
 	pvt->owner = cal;
 
 	if (!(pvt->events = ast_calendar_event_container_alloc())) {
-		ast_log(LOG_NOTICE, "Could not allocate space for fetching events for calendar: %s\n", cal->name);
+		ast_log(LOG_ERROR, "Could not allocate space for fetching events for calendar: %s\n", cal->name);
 		pvt = unref_icalendar(pvt);
 		return NULL;
 	}




More information about the asterisk-commits mailing list