Skip to Content.
Sympa Menu

ndt-dev - [ndt-dev] [ndt] r886 committed - Fix Issue 104 with Java client does not check the version compatibilit...

Subject: NDT-DEV email list created

List archive

[ndt-dev] [ndt] r886 committed - Fix Issue 104 with Java client does not check the version compatibilit...


Chronological Thread 
  • From:
  • To:
  • Subject: [ndt-dev] [ndt] r886 committed - Fix Issue 104 with Java client does not check the version compatibilit...
  • Date: Mon, 10 Feb 2014 08:27:15 +0000

Revision: 886
Author:

Date: Mon Feb 10 08:26:50 2014 UTC
Log: Fix Issue 104 with Java client does not check the version compatibility
http://code.google.com/p/ndt/source/detail?r=886

Modified:
/branches/applet_104/Applet/src/edu/internet2/ndt/Tcpbw100.java

=======================================
--- /branches/applet_104/Applet/src/edu/internet2/ndt/Tcpbw100.java Fri Feb 7 08:10:08 2014 UTC
+++ /branches/applet_104/Applet/src/edu/internet2/ndt/Tcpbw100.java Mon Feb 10 08:26:50 2014 UTC
@@ -2527,7 +2527,7 @@
}
System.out.println("Server version: " +
vVersion.substring(1));

- if (vVersion.endsWith("Web10G") || vVersion.endsWith("web100")) {
+ if (vVersion.endsWith("Web10G") || vVersion.endsWith("Web100")) {
if (!vVersion.substring(1, vVersion.lastIndexOf('-')).equals(NDTConstants.VERSION)) {
_resultsTxtPane.append(_resBundDisplayMsgs
.getString("diffrentVersion") + " (" + vVersion.substring(1, vVersion.lastIndexOf('-')) + ")\n");


  • [ndt-dev] [ndt] r886 committed - Fix Issue 104 with Java client does not check the version compatibilit..., ndt, 02/10/2014

Archive powered by MHonArc 2.6.16.

Top of Page