search for: module_and_arg_path

Displaying 1 result from an estimated 1 matches for "module_and_arg_path".

2019 Nov 08
1
Regarding an "earlier" variant of `pre-xfer exec` [feature request and proposed patch]
...ry based on the pre-xfer data. Unfortunately this proposed hack doesn't work (at least not in the latest 3.1.3), because the `chdir` includes the sub-path inside the module. (I.e. there isn't an `chdir(module_path) && execve(prexfer) && chdir(arg_path)` but a single `chdir(module_and_arg_path) && execve(prexfer)`.) Therefore I've tried to patch `rsync` myself, mainly by copy-pasting the code related to `pre-xfer exec` option: * https://github.com/cipriancraciun/rsync/commit/1f85c5f596542ed878d09a60e55ea0279346802b Please note this is the first time I see the `rsync` code-...