From: Wayne Davison Date: Sat, 11 Oct 2008 17:16:47 +0000 (-0700) Subject: Fixed send_protected_args() to send "." in place of an empty arg. X-Git-Tag: v3.0.5pre1~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf1b29220199f3290892772c41637710d41e53ab;p=thirdparty%2Frsync.git Fixed send_protected_args() to send "." in place of an empty arg. --- diff --git a/rsync.c b/rsync.c index 30f5a07f..0dbbdc91 100644 --- a/rsync.c +++ b/rsync.c @@ -221,16 +221,19 @@ void send_protected_args(int fd, char *args[]) if (verbose > 1) print_child_argv("protected args:", args + i + 1); do { + if (!args[i][0]) + write_buf(fd, ".", 2); #ifdef ICONV_OPTION - if (convert) { + else if (convert) { INIT_XBUF_STRLEN(inbuf, args[i]); iconvbufs(ic_send, &inbuf, &outbuf, ICB_EXPAND_OUT | ICB_INCLUDE_BAD | ICB_INCLUDE_INCOMPLETE); outbuf.buf[outbuf.len] = '\0'; write_buf(fd, outbuf.buf, outbuf.len + 1); outbuf.len = 0; - } else + } #endif + else write_buf(fd, args[i], strlen(args[i]) + 1); } while (args[++i]); write_byte(fd, 0);