X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Ftest-arctwo.c;h=5690b8af9235b0703cda39557d6078477fb8374b;hb=ca2c85799ac5e86ba2d93a6b0628648177984e21;hp=8d5a8c9fdbddd6017f72e3eb0f1287c794c1e5f5;hpb=c0fea97ccf33a4e6b6f9116216b1634663f29474;p=pspp diff --git a/tests/test-arctwo.c b/tests/test-arctwo.c index 8d5a8c9fdb..5690b8af92 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-2011 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,9 +13,7 @@ * 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 . */ #include @@ -118,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; } @@ -140,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; } @@ -162,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; }