diff options
author | Wayne Davison <wayned@samba.org> | 2012-09-23 12:03:19 -0700 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2012-09-23 12:03:19 -0700 |
commit | f143b55ef11d2a43fa581e137f717aad3fdf01a3 (patch) | |
tree | ae57a264463a0808c9f753cb3e1301568b9a19bc /options.c | |
parent | ee51a745c163f3c422a30b22f4beda0e1ead7c20 (diff) | |
download | rsync-f143b55ef11d2a43fa581e137f717aad3fdf01a3.tar.gz rsync-f143b55ef11d2a43fa581e137f717aad3fdf01a3.tar.bz2 rsync-f143b55ef11d2a43fa581e137f717aad3fdf01a3.zip |
Avoid an unused variable warning if no setvbuf.
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -303,7 +303,9 @@ static int refused_partial, refused_progress, refused_delete_before; static int refused_delete_during; static int refused_inplace, refused_no_iconv; static BOOL usermap_via_chown, groupmap_via_chown; +#ifdef HAVE_SETVBUF static char *outbuf_mode; +#endif static char *bwlimit_arg, *max_size_arg, *min_size_arg; static char tmp_partialdir[] = ".~tmp~"; |