diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-09-24 16:10:53 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-09-24 16:10:53 +0200 |
commit | e3ef8803ee46710d080095e4a76e25d3280d6d8b (patch) | |
tree | c5c31ddeb2f446e3ae0e3f40617b3831c79f9a59 /lib/crypto | |
parent | 3023a56b64590df9672a084b07990836e675409f (diff) | |
download | samba-e3ef8803ee46710d080095e4a76e25d3280d6d8b.tar.gz samba-e3ef8803ee46710d080095e4a76e25d3280d6d8b.tar.bz2 samba-e3ef8803ee46710d080095e4a76e25d3280d6d8b.zip |
Fix include paths.
Diffstat (limited to 'lib/crypto')
-rw-r--r-- | lib/crypto/arcfour.c | 2 | ||||
-rw-r--r-- | lib/crypto/hmacmd5.h | 2 | ||||
-rw-r--r-- | lib/crypto/hmacmd5test.c | 2 | ||||
-rw-r--r-- | lib/crypto/hmacsha256.c | 2 | ||||
-rw-r--r-- | lib/crypto/md4test.c | 2 | ||||
-rw-r--r-- | lib/crypto/md5test.c | 2 |
6 files changed, 7 insertions, 5 deletions
diff --git a/lib/crypto/arcfour.c b/lib/crypto/arcfour.c index 94196fa1ee..c57e05d0e9 100644 --- a/lib/crypto/arcfour.c +++ b/lib/crypto/arcfour.c @@ -20,7 +20,7 @@ */ #include "includes.h" -#include "lib/crypto/crypto.h" +#include "../lib/crypto/arcfour.h" /* initialise the arcfour sbox with key */ _PUBLIC_ void arcfour_init(struct arcfour_state *state, const DATA_BLOB *key) diff --git a/lib/crypto/hmacmd5.h b/lib/crypto/hmacmd5.h index d649906bb4..91b8ca586c 100644 --- a/lib/crypto/hmacmd5.h +++ b/lib/crypto/hmacmd5.h @@ -21,6 +21,8 @@ #ifndef _HMAC_MD5_H #define _HMAC_MD5_H +#include "../lib/crypto/md5.h" + typedef struct { struct MD5Context ctx; diff --git a/lib/crypto/hmacmd5test.c b/lib/crypto/hmacmd5test.c index 07ed54c98d..0a98404eda 100644 --- a/lib/crypto/hmacmd5test.c +++ b/lib/crypto/hmacmd5test.c @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "includes.h" -#include "lib/crypto/crypto.h" +#include "../lib/crypto/crypto.h" struct torture_context; diff --git a/lib/crypto/hmacsha256.c b/lib/crypto/hmacsha256.c index 6b0af9ee83..53d4fe3883 100644 --- a/lib/crypto/hmacsha256.c +++ b/lib/crypto/hmacsha256.c @@ -27,7 +27,7 @@ */ #include "includes.h" -#include "lib/crypto/crypto.h" +#include "../lib/crypto/crypto.h" /*********************************************************************** the rfc 2104/2202 version of hmac_sha256 initialisation. diff --git a/lib/crypto/md4test.c b/lib/crypto/md4test.c index 5e0451973c..dddf9e61a0 100644 --- a/lib/crypto/md4test.c +++ b/lib/crypto/md4test.c @@ -18,7 +18,7 @@ */ #include "includes.h" -#include "lib/crypto/crypto.h" +#include "../lib/crypto/crypto.h" struct torture_context; diff --git a/lib/crypto/md5test.c b/lib/crypto/md5test.c index 702e0fcf41..1244dca753 100644 --- a/lib/crypto/md5test.c +++ b/lib/crypto/md5test.c @@ -18,7 +18,7 @@ */ #include "includes.h" -#include "lib/crypto/crypto.h" +#include "../lib/crypto/crypto.h" struct torture_context; |