From: Wayne Davison Date: Sat, 3 Jan 2004 09:44:20 +0000 (+0000) Subject: Fixed a size check in the new code. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/173f5bf8cfa28bbefe718a02839d8ff58f98ac47 Fixed a size check in the new code. --- diff --git a/socket.c b/socket.c index fc01edf9..5843325a 100644 --- a/socket.c +++ b/socket.c @@ -52,7 +52,7 @@ static int establish_proxy_connection(int fd, char *host, int port, proxy_user, proxy_pass); len = strlen(buffer); - if ((len*8 + 5) / 6 - 2 >= (int)sizeof authbuf) { + if ((len*8 + 5) / 6 >= (int)sizeof authbuf) { rprintf(FERROR, "authentication information is too long\n"); return -1;