X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-sha1.c;h=97f50baed1d0a40940b175335011a88c79c7b323;hb=785c0e7ab57dcad628ddab4be8a40036d0160b55;hp=ac5b495174abc0da314e5e572bbc78cb064bf33f;hpb=37e9d1ae8a836d54df8d3ed79668e0e546e7ce4b;p=gnulib.git diff --git a/tests/test-sha1.c b/tests/test-sha1.c index ac5b49517..97f50baed 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-2012 Free Software Foundation, Inc. * Written by Simon Josefsson * * This program is free software: you can redistribute it and/or modify @@ -23,7 +23,7 @@ #include "sha1.h" int -main (int argc, char *argv[]) +main (void) { const char *in1 = "abcdefgh"; const char *out1 = "\x42\x5a\xf1\x2a\x07\x43\x50\x2b" @@ -31,15 +31,15 @@ main (int argc, char *argv[]) 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; }