X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/2509753fd39168002d3f30a3e6fa882108f9e8af..b960483e999add21bdf3467d5c96955e515c29b4:/flist.c diff --git a/flist.c b/flist.c index a5c7ca31..dfa81c4d 100644 --- a/flist.c +++ b/flist.c @@ -1645,8 +1645,10 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) int flags, disable_buffering; int reading_remotely = filesfrom_host != NULL; int rl_flags = (reading_remotely ? 0 : RL_DUMP_COMMENTS) - | (eol_nulls || reading_remotely ? RL_EOL_NULLS : 0) - | (filesfrom_convert ? RL_CONVERT : 0); +#ifdef ICONV_OPTION + | (filesfrom_convert ? RL_CONVERT : 0) +#endif + | (eol_nulls || reading_remotely ? RL_EOL_NULLS : 0); rprintf(FLOG, "building file list\n"); if (show_filelist_p())