indent -kr -i8
[rsync/rsync.git] / generator.c
index ef40470..16c5618 100644 (file)
@@ -99,25 +99,25 @@ static int adapt_block_size(struct file_struct *file, int bsize)
 /*
   send a sums struct down a fd
   */
-static void send_sums(struct sum_struct *s,int f_out)
+static void send_sums(struct sum_struct *s, int f_out)
 {
        int i;
-       
+
        /* tell the other guy how many we are going to be doing and how many
           bytes there are in the last chunk */
-       write_int(f_out,s?s->count:0);
-       write_int(f_out,s?s->n:block_size);
-       write_int(f_out,s?s->remainder:0);
+       write_int(f_out, s ? s->count : 0);
+       write_int(f_out, s ? s->n : block_size);
+       write_int(f_out, s ? s->remainder : 0);
 
-       if (!s) return;
+       if (!s)
+               return;
 
-       for (i=0;i<s->count;i++) {
-               write_int(f_out,s->sums[i].sum1);
-               write_buf(f_out,s->sums[i].sum2,csum_length);
+       for (i = 0; i < s->count; i++) {
+               write_int(f_out, s->sums[i].sum1);
+               write_buf(f_out, s->sums[i].sum2, csum_length);
        }
 }
 
-
 /*
   generate a stream of signatures/checksums that describe a buffer
 
@@ -357,8 +357,9 @@ void recv_generator(char *fname,struct file_list *flist,int i,int f_out)
                        if (!dry_run) send_sums(NULL,f_out);
                } else {
                        if (verbose > 1)
-                               rprintf(FERROR,RSYNC_NAME": recv_generator failed to open \%s\": %s\n",fname,
-                                       strerror(errno));
+                               rprintf(FERROR, RSYNC_NAME
+                                       ": recv_generator failed to open \"%s\": %s\n",
+                                       fname, strerror(errno));
                }
                return;
        }