From: <dg...@su...> - 2009-01-19 18:55:27
|
Author: savago Date: Mon Jan 19 19:54:25 2009 New Revision: 5195 URL: http://www.opensync.org/changeset/5195 Log: Reporting error properly when loading xslt stylesheets fails in connect. This stops sync process to proceed any further. Modified: plugins/google-calendar/src/gcalendar.c Modified: plugins/google-calendar/src/gcalendar.c ============================================================================== --- plugins/google-calendar/src/gcalendar.c Mon Jan 19 19:46:17 2009 (r5194) +++ plugins/google-calendar/src/gcalendar.c Mon Jan 19 19:54:25 2009 (r5195) @@ -191,7 +191,9 @@ return; error: - osync_trace(TRACE_INTERNAL, "\nGood bye, cruel world...\n"); + osync_trace(TRACE_INTERNAL, "Failed to load xslt stylesheet!\n"); + osync_error_set(&error, OSYNC_ERROR_GENERIC, + "Unable load xslt stylesheet data."); osync_context_report_osyncerror(ctx, &error); } |