Update of /cvsroot/freenet/freenet/src/freenet/presentation
In directory sc8-pr-cvs1:/tmp/cvs-serv9444/src/freenet/presentation
Modified Files:
FNPRawMessage.java FCPRawMessage.java
Log Message:
some completely trivial code housekeeping
Index: FNPRawMessage.java
===================================================================
RCS file: /cvsroot/freenet/freenet/src/freenet/presentation/FNPRawMessage.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -w -r1.12 -r1.13
--- FNPRawMessage.java 30 Oct 2003 01:34:08 -0000 1.12
+++ FNPRawMessage.java 30 Oct 2003 15:27:37 -0000 1.13
@@ -135,12 +135,12 @@
// Output tansport options
if (close)
- fs.add("Connection","close");
+ fs.put("Connection","close");
else if (sustain)
- fs.add("Connection","sustain");
+ fs.put("Connection","sustain");
if (trailingFieldLength != 0)
- fs.add("DataLength",Fields.longToHex(trailingFieldLength));
+ fs.put("DataLength",Fields.longToHex(trailingFieldLength));
// Output message fields
Index: FCPRawMessage.java
===================================================================
RCS file: /cvsroot/freenet/freenet/src/freenet/presentation/FCPRawMessage.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -w -r1.8 -r1.9
--- FCPRawMessage.java 18 Oct 2003 00:17:56 -0000 1.8
+++ FCPRawMessage.java 30 Oct 2003 15:27:37 -0000 1.9
@@ -81,7 +81,7 @@
// Output tansport options
if (trailingFieldLength != 0)
- fs.add("Length",Fields.longToHex(trailingFieldLength));
+ fs.put("Length",Fields.longToHex(trailingFieldLength));
// Output message fields
_______________________________________________
cvs mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/cvs