Merge pull request #249 from Arnavion/utf8-everywhere

utf8-everywhere: Derp.
This commit is contained in:
bviktor 2012-11-11 19:57:03 -08:00
commit 1e35c196e8
1 changed files with 2 additions and 2 deletions

View File

@ -1614,7 +1614,7 @@ copy_file (char *dl_src, char *dl_dest, int permissions)
char dl_tmp[4096];
int return_tmp, return_tmp2;
if ((tmp_src = g_open (dl_src, O_RDONLY | OFLAGS)) == -1)
if ((tmp_src = g_open (dl_src, O_RDONLY | OFLAGS, 0600)) == -1)
{
g_fprintf (stderr, "Unable to open() file '%s' (%s) !", dl_src,
strerror (errno));
@ -1622,7 +1622,7 @@ copy_file (char *dl_src, char *dl_dest, int permissions)
}
if ((tmp_dest =
g_fprintf (dl_dest, O_WRONLY | O_CREAT | O_TRUNC | OFLAGS, permissions)) < 0)
g_open (dl_dest, O_WRONLY | O_CREAT | O_TRUNC | OFLAGS, permissions)) < 0)
{
close (tmp_src);
g_fprintf (stderr, "Unable to create file '%s' (%s) !", dl_src,