gcc figures that the format specifier %2x means unsigned int, so let's
[openssl.git] / crypto / evp / evp_test.c
index ae14356dfeabefffb8f7463177ccd927650dd3cf..3607fe777677020f4663d5bb788a2b00e2885e17 100644 (file)
@@ -73,7 +73,7 @@ static int convert(unsigned char *s)
 
     for(d=s ; *s ; s+=2,++d)
        {
-       int n;
+       unsigned int n;
 
        if(!s[1])
            {
@@ -310,7 +310,9 @@ int main(int argc,char **argv)
     OpenSSL_add_all_digests();
     /* Load all compiled-in ENGINEs */
     ENGINE_load_builtin_engines();
+#if 0
     OPENSSL_config();
+#endif
     /* Register all available ENGINE implementations of ciphers and digests.
      * This could perhaps be changed to "ENGINE_register_all_complete()"? */
     ENGINE_register_all_ciphers();