1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-04 02:00:04 +00:00

libopensync: make SVN version buildable (disabled by default)

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1556 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Marcin Juszkiewicz
2007-04-25 12:39:49 +00:00
parent caf3b5b1bc
commit b6e43a2e89
5 changed files with 167 additions and 4 deletions
@@ -0,0 +1,13 @@
Index: trunk/opensync/merger/opensync_xmlfield.c
===================================================================
--- trunk.orig/opensync/merger/opensync_xmlfield.c 2007-04-12 16:40:07.000000000 +0200
+++ trunk/opensync/merger/opensync_xmlfield.c 2007-04-12 16:40:11.000000000 +0200
@@ -298,7 +298,7 @@
int count;
xmlAttrPtr attr = xmlfield->node->properties;
- for(count=0; attribute != NULL; count++) {
+ for(count=0; attr != NULL; count++) {
if(count == nth)
return (const char *)attr->name;
attr = attr->next;