From 1047431e4c1979cfb98584380c023ca8c7085538 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Sat, 13 Dec 2008 23:29:16 +0100 Subject: [PATCH] Fix a typo. --- src/csync.c | 4 ++-- src/csync_propagate.c | 2 +- src/csync_propagate.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/csync.c b/src/csync.c index 1f1614740..dbdb9c9b4 100644 --- a/src/csync.c +++ b/src/csync.c @@ -413,7 +413,7 @@ int csync_propagate(CSYNC *ctx) { ctx->current = LOCAL_REPLICA; ctx->replica = ctx->local.type; - rc = csync_propapate_files(ctx); + rc = csync_propagate_files(ctx); clock_gettime(CLOCK_REALTIME, &finish); @@ -431,7 +431,7 @@ int csync_propagate(CSYNC *ctx) { ctx->current = REMOTE_REPLCIA; ctx->replica = ctx->remote.type; - rc = csync_propapate_files(ctx); + rc = csync_propagate_files(ctx); clock_gettime(CLOCK_REALTIME, &finish); diff --git a/src/csync_propagate.c b/src/csync_propagate.c index 5778f672c..47cc45fe0 100644 --- a/src/csync_propagate.c +++ b/src/csync_propagate.c @@ -836,7 +836,7 @@ err: return -1; } -int csync_propapate_files(CSYNC *ctx) { +int csync_propagate_files(CSYNC *ctx) { c_rbtree_t *tree = NULL; switch (ctx->current) { diff --git a/src/csync_propagate.h b/src/csync_propagate.h index 8d360342b..c48dc0367 100644 --- a/src/csync_propagate.h +++ b/src/csync_propagate.h @@ -28,6 +28,6 @@ #define C_FILE_MODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH) #define C_DIR_MODE (S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) -int csync_propapate_files(CSYNC *ctx); +int csync_propagate_files(CSYNC *ctx); #endif /* _CSYNC_PROPAGATE_H */