From 7abcfd85b701a6c9354b5986eeb248bb766e57d4 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sun, 16 Mar 2008 20:39:16 -0700 Subject: [PATCH] Moved declaration of "int i" outside the ifdef in send_protected_args(). --- rsync.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.34.1