From: <dg...@su...> - 2009-01-12 13:55:51
|
Author: bellmich Date: Mon Jan 12 14:55:05 2009 New Revision: 891 URL: http://libsyncml.opensync.org/changeset/891 Log: fixed ticket #210 Modified: trunk/libsyncml/data_sync_api/data_sync_server.c Modified: trunk/libsyncml/data_sync_api/data_sync_server.c ============================================================================== --- trunk/libsyncml/data_sync_api/data_sync_server.c Wed Jan 7 14:31:00 2009 (r890) +++ trunk/libsyncml/data_sync_api/data_sync_server.c Mon Jan 12 14:55:05 2009 (r891) @@ -171,7 +171,14 @@ * let's respect the remote's anchor style */ if (smlDataSyncIsTimestamp(next, dsObject->useTimestampAnchor) != dsObject->useTimestampAnchor) - g_warning("libsyncml uses different timestamp anchor modes."); + { + /* Many users are confused by warnings which can be ignored. + * Therefore the issue is only traced. + */ + smlTrace(TRACE_INTERNAL, + "%s: libsyncml uses different timestamp anchor modes.", + __func__); + } } datastore->localNext = smlDataSyncGetNextAnchor(datastore, local_last, &error); if (!datastore->localNext) |