fixed bugs for group leader search propagation by appending newline to query

git-svn-id: svn://anubis/gvsu@57 45c1a28c-8058-47b2-ae61-ca45b979098e
This commit is contained in:
josh 2008-03-09 04:40:53 +00:00
parent dd4be30846
commit 5ced7328ae

View File

@ -255,7 +255,7 @@ public class KaZaServer implements Runnable
s.getInputStream()));
DataOutputStream os = new DataOutputStream(s.getOutputStream());
os.writeBytes("SRCH " + depth + " " + query);
os.writeBytes("SRCH " + depth + " " + query + "\n");
for (;;)
{
String inLine = br.readLine();