diff options
author | Wayne Davison <wayne@opencoder.net> | 2020-07-24 11:33:21 -0700 |
---|---|---|
committer | Wayne Davison <wayne@opencoder.net> | 2020-07-24 11:33:21 -0700 |
commit | 842d6edfdcd1e0b2df819cdff321a1854c074112 (patch) | |
tree | 4d3a7626585bdcc99eba3cb5d416e154080f9b29 /options.c | |
parent | 92a8855ff3cbe2d5053952678510d27deb057262 (diff) | |
download | rsync-842d6edfdcd1e0b2df819cdff321a1854c074112.tar.gz |
Fix devices-fake test if rsync can't link specials
- Add info about hardlinked specials to --version output.
- Use "no hardlink-special" info to ensure that the devices-fake
test will not fail.
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -608,6 +608,11 @@ static void print_info_flags(enum logcode f) #endif "hardlinks", +#ifndef CAN_HARDLINK_SPECIAL + "no " +#endif + "hardlink-special", + #ifndef SUPPORT_LINKS "no " #endif |