mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Fixed dependencies and a syntax error
This commit is contained in:
parent
08ee8adc45
commit
6616ba9a1e
3 changed files with 7 additions and 2 deletions
|
@ -526,7 +526,7 @@ gnupg_remove (const char *fname)
|
|||
gpg_err_set_errno (EIO);
|
||||
return !rc;
|
||||
#else
|
||||
return remove;
|
||||
return remove (fname);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -590,7 +590,7 @@ gnupg_mkdir (const char *name, const char *modestr)
|
|||
if (*modestr && *modestr++ == 'x')
|
||||
mode |= S_IXOTH;
|
||||
}
|
||||
return mkdir (home, mode)
|
||||
return mkdir (name, mode);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue