- Minor
I have a problem with rsync.
When I run
`rsync -azh --partial "$SRC" "$TARGET"`
files are transferred.
When I try to do it again, the same files are transferred again.
when i do on new files i get
```bash
stat "$SCR_ONE_FILE"
16777244 1002714 -rw-r--r-- 1 proteus staff 0 8845961 "Dec 22 15:06:26 2024" "Dec 22 10:55:54 2024" "Dec 22 10:55:54 2024" "Dec 22 10:55:54 2024" 4096 17280 0 "$SCR_ONE_FILE"
```
and
```bash
stat "$TARGET_ONE_FILE"
922746886 11086197041313146704 -rw-r--r-- 1 proteus staff 0 8845961 "Dec 22 19:09:39 2024" "Dec 22 19:09:40 2024" "Dec 22 19:09:40 2024" "Dec 22 10:55:54 2024" 1024 17278 0 "$TARGET_ONE_FILE"
```
but on old files i get
```bash
stat "$SCR_ONE_OLD_FILE"
16777244 81106 -rw-r--r-- 1 proteus staff 0 118819 "Jun 15 19:27:07 2024" "Jul 15 11:53:17 2023" "Jun 15 19:27:07 2024" "Jul 15 11:53:17 2023" 4096 240 0 "$SCR_ONE_OLD_FILE"
```
and
```bash
stat "$TARGET_ONE_OLD_FILE"
922746886 11037371857978956400 -rw-r--r-- 1 proteus staff 0 118819 "Jul 15 13:03:03 2023" "Jul 15 11:53:17 2023" "Jul 15 11:53:17 2023" "Jul 15 11:53:17 2023" 1024 234 0 "$TARGET_ONE_OLD_FILE"
```
So, to me, it appears that the second date is different after coping in 6.12.14.
A little bit about my setup on Mac I have mounted smb share exposed from vm (Docker + K3S + Debian).
In K8s, the volume is backed by an NFS share which is exposed directly from Unraid. This NFS share is exposed from a ZFS pool.
Before 6.12.14, I was on 6.12.13, and there was no problem, and everything worked.