mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 05:25:50 +03:00
Hide temp files for download to local.
This commit is contained in:
parent
1705a309b2
commit
8ed89bca86
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ static int _csync_push_file(CSYNC *ctx, csync_file_stat_t *st) {
|
|||
|
||||
if (_push_to_tmp_first(ctx)) {
|
||||
/* create the temporary file name */
|
||||
if (asprintf(&turi, "%s.~XXXXXX", duri) < 0) {
|
||||
if (asprintf(&turi, ".%s.~XXXXXX", duri) < 0) {
|
||||
rc = -1;
|
||||
goto out;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue