X-Git-Url: https://www.flypig.org.uk/git/?a=blobdiff_plain;f=src%2Fhashcat.c;h=40adbc6550fdd01839b6d896d2241c6f99d45082;hb=2167df6915974d5ec8db6bf94eaba0e1bba959b8;hp=9d4299e32e7c36f0087817c871d7e5d9a63135a9;hpb=752e548f4e696ab7bd09c301bff2729e200b2dac;p=hashcat.git diff --git a/src/hashcat.c b/src/hashcat.c index 9d4299e..40adbc6 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -16107,12 +16107,6 @@ int main (int argc, char **argv) return -1; } - naive_replace (cpath_real, '\\', '/'); - - // not escaping here, windows has quotes - - snprintf (build_opts, sizeof (build_opts) - 1, "-I \"%s\"", cpath_real); - #else snprintf (cpath, sizeof (cpath) - 1, "%s/OpenCL/", shared_dir); @@ -16126,6 +16120,25 @@ int main (int argc, char **argv) return -1; } + #endif + + if (chdir (cpath_real) == -1) + { + log_error ("ERROR: %s: %s", cpath_real, strerror (errno)); + + return -1; + } + + #if _WIN + + naive_replace (cpath_real, '\\', '/'); + + // not escaping here, windows has quotes + + snprintf (build_opts, sizeof (build_opts) - 1, "-I \"%s\"", cpath_real); + + #else + naive_escape (cpath_real, PATH_MAX, ' ', '\\'); snprintf (build_opts, sizeof (build_opts) - 1, "-I %s", cpath_real); @@ -16157,13 +16170,6 @@ int main (int argc, char **argv) "inc_vendor.cl", }; - if (chdir (cpath_real) == -1) - { - log_error ("ERROR: %s: %s", cpath_real, strerror (errno)); - - return -1; - } - for (int i = 0; i < files_cnt; i++) { FILE *fd = fopen (files_names[i], "r");