From 87bc7ca4ccb092833bc5880dc35d67cdde0f753f Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Sun, 15 Apr 2012 14:35:38 +0200 Subject: [PATCH] Fix warning condition --- modules/csync_owncloud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/csync_owncloud.c b/modules/csync_owncloud.c index 12fd9661f0..8114dfa057 100644 --- a/modules/csync_owncloud.c +++ b/modules/csync_owncloud.c @@ -742,7 +742,7 @@ static int uncompress_reader(void *userdata, const char *buf, size_t len) if( buf && writeCtx->fd ) { /* DEBUG_WEBDAV(("Writing NON compressed %d bytes\n", len)); */ - len = write(writeCtx->fd, buf, len); + written = write(writeCtx->fd, buf, len); if( len != written ) { DEBUG_WEBDAV(("WRN: uncompress_reader wrote wrong num of bytes\n")); }