Indent.
authorMartin Pool <mbp@samba.org>
Wed, 23 Jan 2002 06:48:13 +0000 (06:48 +0000)
committerMartin Pool <mbp@samba.org>
Wed, 23 Jan 2002 06:48:13 +0000 (06:48 +0000)
generator.c

index 353e706..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