X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-sha1.c;h=dd8b8d95e481bbbafe07739625a856a229cdd35d;hb=4779b635ef35c7b0bc4044fcb5bc746d06f158c4;hp=892f2c8fa9c7977be0b805e9d43d1065a0330ba5;hpb=82381b9e5b37125305709d412d8322b35e5c4796;p=gnulib.git diff --git a/tests/test-sha1.c b/tests/test-sha1.c index 892f2c8fa..dd8b8d95e 100644 --- a/tests/test-sha1.c +++ b/tests/test-sha1.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005, 2008, 2009 Free Software Foundation, Inc. + * Copyright (C) 2005, 2008-2013 Free Software Foundation, Inc. * Written by Simon Josefsson * * This program is free software: you can redistribute it and/or modify @@ -31,15 +31,15 @@ main (void) char buf[SHA1_DIGEST_SIZE]; if (memcmp (sha1_buffer (in1, strlen (in1), buf), - out1, SHA1_DIGEST_SIZE) != 0) + out1, SHA1_DIGEST_SIZE) != 0) { size_t i; printf ("expected:\n"); for (i = 0; i < SHA1_DIGEST_SIZE; i++) - printf ("%02x ", out1[i] & 0xFF); + printf ("%02x ", out1[i] & 0xFF); printf ("\ncomputed:\n"); for (i = 0; i < SHA1_DIGEST_SIZE; i++) - printf ("%02x ", buf[i] & 0xFF); + printf ("%02x ", buf[i] & 0xFF); printf ("\n"); return 1; }