Unified - do a better job when uninstalling
[openssl.git] / test / bftest.c
index e581bf50ab6b8d45b2e81fc6b5eb318b58d5adcc..657ae90c348de41dc0ed0c5e44caeb19b3c51d03 100644 (file)
@@ -1,4 +1,3 @@
-/* crypto/bf/bftest.c */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -461,8 +460,8 @@ static int test(void)
     len = strlen(cbc_data) + 1;
 
     BF_set_key(&key, 16, cbc_key);
-    memset(cbc_in, 0, sizeof cbc_in);
-    memset(cbc_out, 0, sizeof cbc_out);
+    memset(cbc_in, 0, sizeof(cbc_in));
+    memset(cbc_out, 0, sizeof(cbc_out));
     memcpy(iv, cbc_iv, sizeof iv);
     BF_cbc_encrypt((unsigned char *)cbc_data, cbc_out, len,
                    &key, iv, BF_ENCRYPT);