$OpenBSD: patch-src_BaseClient_cpp,v 1.3 2012/02/22 07:54:26 dcoppa Exp $

Fix showing of shared files to other clients
(upstream git commit 4e40aecb160baac72aa28a8a4c7aaf19261e051f)

--- src/BaseClient.cpp.orig	Wed Oct  5 21:02:32 2011
+++ src/BaseClient.cpp	Tue Feb 21 15:56:05 2012
@@ -2857,7 +2857,7 @@ void CUpDownClient::SendSharedDirectories()
 		
 		// Build packet
 		CMemFile tempfile(80);
-		tempfile.WriteUInt32(foldersToSend.size());
+		tempfile.WriteUInt32(foldersToSend.size() + 1);	// + 1 for the incomplete files
 
 		PathList::iterator it = foldersToSend.begin();
 		for (; it != foldersToSend.end(); ++it) {
