maint: update copyright
[gnulib.git] / tests / test-arcfour.c
index a9b50f8..bc1171a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2005 Free Software Foundation
+ * Copyright (C) 2005, 2010-2014 Free Software Foundation, Inc.
  * Written by Simon Josefsson
  *
  * This program is free software: you can redistribute it and/or modify
@@ -39,10 +39,10 @@ main (int argc, char *argv[])
       size_t i;
       printf ("expected:\n");
       for (i = 0; i < 5; i++)
-       printf ("%02x ", scratch[i] & 0xFF);
+        printf ("%02x ", scratch[i] & 0xFF);
       printf ("\ncomputed:\n");
       for (i = 0; i < 5; i++)
-       printf ("%02x ", ciphertext_1[i] & 0xFF);
+        printf ("%02x ", ciphertext_1[i] & 0xFF);
       printf ("\n");
       return 1;
     }
@@ -56,10 +56,10 @@ main (int argc, char *argv[])
       size_t i;
       printf ("expected:\n");
       for (i = 0; i < 5; i++)
-       printf ("%02x ", plaintext_1[i] & 0xFF);
+        printf ("%02x ", plaintext_1[i] & 0xFF);
       printf ("\ncomputed:\n");
       for (i = 0; i < 5; i++)
-       printf ("%02x ", scratch[i] & 0xFF);
+        printf ("%02x ", scratch[i] & 0xFF);
       printf ("\n");
       return 1;
     }