aboutsummaryrefslogtreecommitdiff
path: root/funccrypt.c
diff options
context:
space:
mode:
Diffstat (limited to 'funccrypt.c')
-rw-r--r--funccrypt.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/funccrypt.c b/funccrypt.c
index 2c48192..60c3edd 100644
--- a/funccrypt.c
+++ b/funccrypt.c
@@ -12,7 +12,6 @@
const char *crypt_strs[] = {
"ERROR", "PROLOGUE", "EPILOGUE", "CHECK", "OK"
};
-#endif
void printHexBuf(uint8_t *buf, size_t siz, size_t chars_per_line)
@@ -28,6 +27,7 @@ void printHexBuf(uint8_t *buf, size_t siz, size_t chars_per_line)
if ((i) % chars_per_line != 0)
printf("\n");
}
+#endif
crypt_return crypt_func(void *fn_start)
{
@@ -40,7 +40,9 @@ crypt_return crypt_func(void *fn_start)
crypt_header *hdr;
size_t crypt_size;
+#ifdef _DEBUG
printf("Fn: %p\n", fnbuf);
+#endif
for (i = 0; i < CRYPT_FUNC_MAXSIZ; ++i) {
if (cret == CRET_ERROR &&