Fix a typo.

This commit is contained in:
Andreas Schneider 2008-12-13 23:29:16 +01:00
parent 1c04bb9cb7
commit 1047431e4c
3 changed files with 4 additions and 4 deletions

View file

@ -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);

View file

@ -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) {

View file

@ -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 */