Updated calls to #include "blenkey.h" to be #include "key.h" I'm guessing

it wasn't detected before because everyone had a blenkey.h in their dirs also.
also I added an #include "key.h" to key_internal.h so that I didn't
get problems with undefined type byte...

mein@cs.umn.edu
This commit is contained in:
Kent Mein 2002-10-31 21:08:41 +00:00
parent 703661876e
commit 94706ed592
3 changed files with 3 additions and 2 deletions

@ -41,7 +41,7 @@
#include <stdlib.h>
#include <string.h>
#include "blenkey.h" /* external interface */
#include "key.h" /* external interface */
#include "key_internal.h"
char *Hexify(byte *in, unsigned int length) {

@ -42,6 +42,7 @@
#include "openssl/ripemd.h"
#include "openssl/rc4.h"
#include "openssl/err.h"
#include "key.h"
#include "mt19937int.h" /* Mersenne Twister (under artistic license) */

@ -42,7 +42,7 @@
#include <string.h>
#include "key_pyc.h" /* the Python byte code */
#include "blenkey.h" /* the external interface */
#include "key.h" /* the external interface */
#include "key_internal.h"
#define TESTReadKeyFile 1