diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-07-24 04:34:48 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-07-24 04:34:48 +0800 |
commit | 6a6af1c7727308fd81d3fa8cfd8a67a1d79e80c6 (patch) | |
tree | 81f3a8c4095040ea7f5dc4fabf06780b4abd2111 /deskutils/multisync/files | |
parent | 3f2d648b714133754d45834582aebaf05cef4600 (diff) | |
download | marcuscom-ports-6a6af1c7727308fd81d3fa8cfd8a67a1d79e80c6.tar marcuscom-ports-6a6af1c7727308fd81d3fa8cfd8a67a1d79e80c6.tar.gz marcuscom-ports-6a6af1c7727308fd81d3fa8cfd8a67a1d79e80c6.tar.bz2 marcuscom-ports-6a6af1c7727308fd81d3fa8cfd8a67a1d79e80c6.tar.lz marcuscom-ports-6a6af1c7727308fd81d3fa8cfd8a67a1d79e80c6.tar.xz marcuscom-ports-6a6af1c7727308fd81d3fa8cfd8a67a1d79e80c6.tar.zst marcuscom-ports-6a6af1c7727308fd81d3fa8cfd8a67a1d79e80c6.zip |
share/gnome/ -> share/.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9242 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'deskutils/multisync/files')
-rw-r--r-- | deskutils/multisync/files/patch-src-syncengine.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/deskutils/multisync/files/patch-src-syncengine.c b/deskutils/multisync/files/patch-src-syncengine.c new file mode 100644 index 000000000..9580f62a9 --- /dev/null +++ b/deskutils/multisync/files/patch-src-syncengine.c @@ -0,0 +1,27 @@ +--- src/syncengine.c.orig Mon Apr 12 14:23:21 2004 ++++ src/syncengine.c Sat Sep 11 22:53:29 2004 +@@ -1097,6 +1097,7 @@ + for (n = 0; n < g_list_length(remotechanges); n++) { + changed_object *robj, *lobj; + char *luid, *uid; ++ sync_compare_result compare; + + robj = g_list_nth_data(remotechanges, n); + lobj = g_list_nth_data(localchanges, t); +@@ -1135,7 +1136,7 @@ + if (!uid) {*/ + // None of the two objects has a UID connection + // If they are equal, just connect them +- sync_compare_result compare = ++ compare = + sync_compare_objects(robj->comp, lobj->comp, lobj->object_type); + if (compare == SYNC_COMPARE_EQUAL) { + sync_insert_idpair(lobj->uid, robj->uid, +@@ -1714,6 +1715,7 @@ + plugin = g_malloc0(sizeof(sync_plugin)); + g_assert(plugin); + plugin->plugin = mod; ++ dlerror(); /* Clear previous errors */ + plugin->shortname = CALL_PLUGIN(plugin, "short_name", ()); + ptr=dlerror(); + if (ptr != 0) { |