Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Bug 526796 – Wrong order of arguments in g_file_copy's fallback
Browse files Browse the repository at this point in the history
2008-04-07  Matthias Clasen  <mclasen@redhat.com>

        Bug 526796 – Wrong order of arguments in g_file_copy's fallback

        * gfile.c (file_copy_fallback): Fix the argument order. Patch
        by Christian Kellner.


svn path=/branches/glib-2-16/; revision=6831
  • Loading branch information
Matthias Clasen authored and Matthias Clasen committed Apr 8, 2008
1 parent 5be1985 commit 118e24c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions gio/ChangeLog
@@ -1,3 +1,12 @@
2008-04-07 Matthias Clasen <mclasen@redhat.com>

Merged from trunk:

Bug 526796 – Wrong order of arguments in g_file_copy's fallback

* gfile.c (file_copy_fallback): Fix the argument order. Patch
by Christian Kellner.

2008-04-04 Sebastien Bacher <seb128@ubuntu.com>

* gunixmounts.c: (g_unix_mount_guess_should_display):
Expand Down
3 changes: 2 additions & 1 deletion gio/gfile.c
Expand Up @@ -2263,8 +2263,9 @@ file_copy_fallback (GFile *source,
if (flags & G_FILE_COPY_OVERWRITE)
{
out = (GOutputStream *)g_file_replace (destination,
NULL, 0,
NULL,
flags & G_FILE_COPY_BACKUP,
0,
cancellable, error);
}
else
Expand Down

0 comments on commit 118e24c

Please sign in to comment.