1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-05-25 10:18:47 +00:00

conform to hashcat style conventions

This commit is contained in:
nycex 2020-07-05 13:59:03 +02:00
parent 8d78815767
commit d018469aef
No known key found for this signature in database
GPG Key ID: EE6FBE8D3E7278A5

View File

@ -94,13 +94,16 @@ static void get_profile_dir (char *profile_dir, const char *home_dir)
{ {
snprintf (profile_dir, HCBUFSIZ_TINY, "%s/%s", home_dir, DOT_HASHCAT); snprintf (profile_dir, HCBUFSIZ_TINY, "%s/%s", home_dir, DOT_HASHCAT);
struct stat st = {0}; struct stat st = {0};
if (stat(profile_dir, &st) == 0 && S_ISDIR(st.st_mode)) if (stat (profile_dir, &st) == 0 && S_ISDIR (st.st_mode))
return; return;
if (getenv("XDG_DATA_HOME")) { if (getenv("XDG_DATA_HOME"))
snprintf(profile_dir, HCBUFSIZ_TINY, "%s/hashcat", getenv("XDG_DATA_HOME")); {
} else { snprintf (profile_dir, HCBUFSIZ_TINY, "%s/hashcat", getenv("XDG_DATA_HOME"));
snprintf(profile_dir, HCBUFSIZ_TINY, "%s/.local/share/hashcat", home_dir); }
else
{
snprintf (profile_dir, HCBUFSIZ_TINY, "%s/.local/share/hashcat", home_dir);
} }
} }