1
0
Fork 0
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:
Werner Koch 2010-04-14 17:56:22 +00:00
parent 08ee8adc45
commit 6616ba9a1e
3 changed files with 7 additions and 2 deletions

View file

@ -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
}