From 7dcb9ffdeb556eea9362e76e23399d6592d86742 Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Fri, 17 Aug 2012 16:45:12 +0300 Subject: [PATCH] Added id lists to context type and removed change counter. --- src/csync_private.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/csync_private.h b/src/csync_private.h index cb809723e6..6b139af348 100644 --- a/src/csync_private.h +++ b/src/csync_private.h @@ -94,16 +94,16 @@ struct csync_s { char *uri; c_rbtree_t *tree; c_list_t *list; + c_list_t *id_list; enum csync_replica_e type; - unsigned long changes; } local; struct { char *uri; c_rbtree_t *tree; c_list_t *list; + c_list_t *id_list; enum csync_replica_e type; - unsigned long changes; } remote; struct { @@ -137,7 +137,7 @@ struct csync_s { /* error code of the last operation */ enum csync_error_codes_e error_code; - + int status; }; @@ -162,7 +162,7 @@ struct csync_file_stat_s { int nlink; /* u32 */ int type; /* u32 */ - char *md5; + const char *md5; char *destpath; /* for renames */ enum csync_instructions_e instruction; /* u32 */