mogabr / ndt

Automatically exported from code.google.com/p/ndt
Other
0 stars 0 forks source link

in Java client pub_Timeouts variable is always 0 #153

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
In java client in save_int_values function duplicate save for "Timeouts" 
variable, so
second "if" is never work and pub_Timeouts is always 0.

https://code.google.com/p/ndt/source/browse/trunk/Applet/src/edu/internet2/ndt/T
cpbw100.java#4052 :

else if (sSysvarParam.equals("Timeouts:"))
    _iTimeouts = iSysvalParam;

https://code.google.com/p/ndt/source/browse/trunk/Applet/src/edu/internet2/ndt/T
cpbw100.java#4113 :

else if (sSysvarParam.equals("Timeouts:")) {
    pub_Timeouts = iSysvalParam;
}

Original issue reported on code.google.com by smale...@soldevelo.com on 30 Jul 2014 at 9:15