diff options
| author | Tristan Riehs <tristan.riehs@inria.fr> | 2026-07-16 14:17:55 +0200 |
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@inria.fr> | 2026-07-16 14:17:55 +0200 |
| commit | d1da46cdca0065713156487d435a64407984a7fc (patch) | |
| tree | 76b1401c64ab4e3277dc945f2b385d8dcafba012 /src | |
| parent | 920c4bb99e9d8149e0f8f6cec8c3bfa5eb4641aa (diff) | |
Fix STUPID value swapping mistake
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1030,8 +1030,9 @@ static void ftag_sync_run_rsync(int push) char *src = remote_path; char *dst = local_path; if (push) { + char *tmp = src; src = dst; - dst = src; + dst = tmp; } char *cmd[] = { "rsync", |
