From: Wayne Davison Date: Mon, 17 Mar 2008 03:39:16 +0000 (-0700) Subject: Moved declaration of "int i" outside the ifdef in send_protected_args(). X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/7abcfd85b701a6c9354b5986eeb248bb766e57d4 Moved declaration of "int i" outside the ifdef in send_protected_args(). --- diff --git a/rsync.c b/rsync.c index c384ed9b..48894c97 100644 --- a/rsync.c +++ b/rsync.c @@ -207,8 +207,9 @@ int iconvbufs(iconv_t ic, xbuf *in, xbuf *out, int flags) void send_protected_args(int fd, char *args[]) { + int i; #ifdef ICONV_OPTION - int i, convert = ic_send != (iconv_t)-1; + int convert = ic_send != (iconv_t)-1; xbuf outbuf, inbuf; if (convert)