From 215457d74d9dabced22ecbf0fc0f62bbf5d89cd8 Mon Sep 17 00:00:00 2001 From: jsteube Date: Sat, 23 Jul 2016 23:30:42 +0200 Subject: [PATCH] Workaround for OpenCL runtimes which do accept -I parameter in the OpenCL kernel build options, but do not allow quotes --- src/hashcat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/hashcat.c b/src/hashcat.c index c702d12..7911098 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -6600,7 +6600,8 @@ int main (int argc, char **argv) #endif - if (getenv ("TMP") == NULL) + //if (getenv ("TMP") == NULL) + if (1) { char tmp[1000]; -- 2.25.1