* t_shs.c: Cast arguments to match printf format. Declare main
authorEzra Peisach <epeisach@mit.edu>
Thu, 21 Jun 2001 13:42:06 +0000 (13:42 +0000)
committerEzra Peisach <epeisach@mit.edu>
Thu, 21 Jun 2001 13:42:06 +0000 (13:42 +0000)
          as returning int. Comment out unused variables.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13443 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/crypto/sha1/ChangeLog
src/lib/crypto/sha1/t_shs.c

index 4b0425dbea209d47856b1f54b48af91be2e08010..b626bad8f28f6425ec72ce86c197e514d8a0722a 100644 (file)
@@ -1,3 +1,8 @@
+2001-06-21  Ezra Peisach  <epeisach@mit.edu>
+
+       * t_shs.c: Cast arguments to match printf format. Declare main as
+       returning int. Comment out unused variables.
+
 2001-03-14  Ken Raeburn  <raeburn@mit.edu>
 
        * shs.h: Stop using KRB5_PROTOTYPE.
index da55992ec9fcd6549aec5e6573218a70c87122dc..5d7d86a4c9efc62ece9eaaa48ba6cf5c0474260d 100644 (file)
@@ -41,11 +41,11 @@ int shsTestLevel;
     if (fail) {
        printf("\nExpected: ");
        for (i = 0; i < 5; i++) {
-           printf("%8.8lx ", shsTestResults[shsTestLevel][i]);
+           printf("%8.8lx ", (unsigned long) shsTestResults[shsTestLevel][i]);
        }
        printf("\nGot:      ");
        for (i = 0; i < 5; i++) {
-           printf("%8.8lx ", shsInfo->digest[i]);
+           printf("%8.8lx ", (unsigned long) shsInfo->digest[i]);
        }
        printf("\n");
        return( -1 );
@@ -53,12 +53,15 @@ int shsTestLevel;
     return( 0 );
 }
 
+int
 main()
 {
     SHS_INFO shsInfo;
     unsigned int i;
+#if 0
     time_t secondCount;
     BYTE data[ 200 ];
+#endif
 
     /* Make sure we've got the endianness set right.  If the machine is
        big-endian (up to 64 bits) the following value will be signed,