mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 03:17:41 +03:00
Reorder for consistency with the rest of the code
This commit is contained in:
parent
f384177a3a
commit
139c99a73a
1 changed files with 2 additions and 3 deletions
|
@ -207,12 +207,11 @@ basedir_create_useronly(const char *file)
|
|||
dir = xstrdup(file);
|
||||
basename = file_basename(dir);
|
||||
if (basename == dir) {
|
||||
// this is a plain file path relative to CWD
|
||||
free(dir);
|
||||
return 0;
|
||||
} else {
|
||||
dir[basename - dir - 1] = 0;
|
||||
}
|
||||
dir[basename - dir - 1] = 0;
|
||||
|
||||
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__))
|
||||
if (*dir == 0 || mkdir(dir, 0700) == 0 || errno == EEXIST) {
|
||||
ret = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue