[Commit] RRClient RRNetIn.java,1.4,1.5

Bart Massey commit at keithp.com
Wed Jan 7 20:51:06 PST 2004


Committed by: bart

Update of /local/src/CVS/RRClient
In directory home.keithp.com:/tmp/cvs-serv24711

Modified Files:
	RRNetIn.java 
Log Message:
Missing || in previous fix



Index: RRNetIn.java
===================================================================
RCS file: /local/src/CVS/RRClient/RRNetIn.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- RRNetIn.java	8 Jan 2004 04:48:46 -0000	1.4
+++ RRNetIn.java	8 Jan 2004 04:51:04 -0000	1.5
@@ -133,7 +133,7 @@
     class ResetHandler implements NoticeHandler {
 	public boolean match(String[] notice) {
 	    if (notice.length != 2 ||
-		!notice[0].equals("NOTICE"))
+		!notice[0].equals("NOTICE") ||
 		!notice[1].equals("RESET"))
 		return false;
 	    return true;




More information about the Commit mailing list