getaddrinfo: Doc fix.
[pspp] / tests / test-md5.c
index c3f4521cede6f7ffac961a00a0a0957b309f71bc..99d49b868fedaacaccc71228b9a89222b6dc03e1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2005, 2009 Free Software Foundation
+ * Copyright (C) 2005, 2009-2011 Free Software Foundation, Inc.
  * Written by Simon Josefsson
  *
  * This program is free software: you can redistribute it and/or modify
@@ -42,10 +42,10 @@ main (void)
       size_t i;
       printf ("expected:\n");
       for (i = 0; i < MD5_DIGEST_SIZE; i++)
-       printf ("%02x ", out1[i] & 0xFF);
+        printf ("%02x ", out1[i] & 0xFF);
       printf ("\ncomputed:\n");
       for (i = 0; i < MD5_DIGEST_SIZE; i++)
-       printf ("%02x ", buf[i] & 0xFF);
+        printf ("%02x ", buf[i] & 0xFF);
       printf ("\n");
       return 1;
     }
@@ -55,10 +55,10 @@ main (void)
       size_t i;
       printf ("expected:\n");
       for (i = 0; i < MD5_DIGEST_SIZE; i++)
-       printf ("%02x ", out2[i] & 0xFF);
+        printf ("%02x ", out2[i] & 0xFF);
       printf ("\ncomputed:\n");
       for (i = 0; i < MD5_DIGEST_SIZE; i++)
-       printf ("%02x ", buf[i] & 0xFF);
+        printf ("%02x ", buf[i] & 0xFF);
       printf ("\n");
       return 1;
     }