X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-arctwo.c;h=ef07f13552f91bbcb7a024f6d1ded0bbf95ad2e0;hb=ff867baa1c26bf57b30e0fcab2181421b15a1fa5;hp=85df6d1bf0d60c3814678c300c1b1bd7299db02e;hpb=853ca59f4a9c7dac95aacece42daf3e09d5ae03e;p=gnulib.git diff --git a/tests/test-arctwo.c b/tests/test-arctwo.c index 85df6d1bf..ef07f1355 100644 --- a/tests/test-arctwo.c +++ b/tests/test-arctwo.c @@ -1,11 +1,11 @@ /* - * Copyright (C) 2005 Free Software Foundation + * Copyright (C) 2005, 2010 Free Software Foundation, Inc. * Written by Simon Josefsson * - * This program is free software; you can redistribute it and/or modify + * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -13,13 +13,9 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - * 02110-1301, USA. */ + * along with this program. If not, see . */ -#ifdef HAVE_CONFIG_H -# include -#endif +#include #include #include @@ -120,10 +116,10 @@ main (int argc, char *argv[]) size_t i; printf ("expected:\n"); for (i = 0; i < sizeof (ciphertext_4); i++) - printf ("%02x ", ciphertext_4[i] & 0xFF); + printf ("%02x ", ciphertext_4[i] & 0xFF); printf ("\ncomputed:\n"); for (i = 0; i < sizeof (ciphertext_4); i++) - printf ("%02x ", scratch[i] & 0xFF); + printf ("%02x ", scratch[i] & 0xFF); printf ("\n"); return 1; } @@ -142,10 +138,10 @@ main (int argc, char *argv[]) size_t i; printf ("expected:\n"); for (i = 0; i < sizeof (ciphertext_5); i++) - printf ("%02x ", ciphertext_5[i] & 0xFF); + printf ("%02x ", ciphertext_5[i] & 0xFF); printf ("\ncomputed:\n"); for (i = 0; i < sizeof (ciphertext_5); i++) - printf ("%02x ", scratch[i] & 0xFF); + printf ("%02x ", scratch[i] & 0xFF); printf ("\n"); return 1; } @@ -164,10 +160,10 @@ main (int argc, char *argv[]) size_t i; printf ("expected:\n"); for (i = 0; i < sizeof (ciphertext_6); i++) - printf ("%02x ", ciphertext_6[i] & 0xFF); + printf ("%02x ", ciphertext_6[i] & 0xFF); printf ("\ncomputed:\n"); for (i = 0; i < sizeof (ciphertext_6); i++) - printf ("%02x ", scratch[i] & 0xFF); + printf ("%02x ", scratch[i] & 0xFF); printf ("\n"); return 1; }