diff crypt_hash_descriptor.c @ 147:c2b93763dac9 libtomcrypt

Fixes for it to compile and work nicely with Dropbear. In particular, OS X's 'ar' doesn't seem to like arrays which don't have initialising values.
author Matt Johnston <matt@ucc.asn.au>
date Sun, 19 Dec 2004 16:23:32 +0000
parents 7ed585a2c53b
children
line wrap: on
line diff
--- a/crypt_hash_descriptor.c	Sun Dec 19 11:47:33 2004 +0000
+++ b/crypt_hash_descriptor.c	Sun Dec 19 16:23:32 2004 +0000
@@ -10,5 +10,10 @@
  */
 #include "mycrypt.h"
 
-struct _hash_descriptor hash_descriptor[TAB_SIZE];
-
+struct _hash_descriptor hash_descriptor[TAB_SIZE] = {
+	/* OS X has a broken ar, so we need to initialise. */
+	{NULL, 0, 0, 0, NULL, NULL, NULL, NULL},
+	{NULL, 0, 0, 0, NULL, NULL, NULL, NULL},
+	{NULL, 0, 0, 0, NULL, NULL, NULL, NULL},
+	{NULL, 0, 0, 0, NULL, NULL, NULL, NULL},
+};