diff options
author | Wayne Davison <wayned@samba.org> | 2008-08-02 07:06:15 -0700 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2008-08-02 07:06:15 -0700 |
commit | 91fd15b8b654a3be886069510d85064d59ca5dc7 (patch) | |
tree | 7005ab6a17cf4875be548905ab2ef160a2370ee1 /options.c | |
parent | 6e5b682273436decb233e1ce83a923364c7eb25d (diff) | |
download | rsync-91fd15b8b654a3be886069510d85064d59ca5dc7.tar.gz rsync-91fd15b8b654a3be886069510d85064d59ca5dc7.tar.bz2 rsync-91fd15b8b654a3be886069510d85064d59ca5dc7.zip |
Skip new symlink conversion step if the remote rsync is not
new enough to do symlink content conversions.
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2245,6 +2245,9 @@ void server_options(char **args, int *argc_p) #if defined HAVE_LUTIMES && defined HAVE_UTIMES argstr[x++] = 'L'; #endif +#ifdef ICONV_OPTION + argstr[x++] = 's'; +#endif } if (x >= (int)sizeof argstr) { /* Not possible... */ |