summaryrefslogtreecommitdiff
path: root/options.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2008-08-02 07:06:15 -0700
committerWayne Davison <wayned@samba.org>2008-08-02 07:06:15 -0700
commit91fd15b8b654a3be886069510d85064d59ca5dc7 (patch)
tree7005ab6a17cf4875be548905ab2ef160a2370ee1 /options.c
parent6e5b682273436decb233e1ce83a923364c7eb25d (diff)
downloadrsync-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.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/options.c b/options.c
index f47c633e..11860cbc 100644
--- a/options.c
+++ b/options.c
@@ -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... */