summaryrefslogtreecommitdiff
path: root/java/test/Ice/udp/Server.java
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2009-12-17 17:00:31 +0100
committerBenoit Foucher <benoit@zeroc.com>2009-12-17 17:00:31 +0100
commit185cdab0b762c465d4a78f7816218cfa88107ac1 (patch)
tree5a86d2cee2ce812137d1d849876a50eaa23a674c /java/test/Ice/udp/Server.java
parentAdd x64 libdb_java48.dll to installers (diff)
downloadice-185cdab0b762c465d4a78f7816218cfa88107ac1.tar.bz2
ice-185cdab0b762c465d4a78f7816218cfa88107ac1.tar.xz
ice-185cdab0b762c465d4a78f7816218cfa88107ac1.zip
Fixed long waits in multicast.py script and bug in Java udp test where IPv6 wasn't tested for multicast
Diffstat (limited to 'java/test/Ice/udp/Server.java')
-rw-r--r--java/test/Ice/udp/Server.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/test/Ice/udp/Server.java b/java/test/Ice/udp/Server.java
index 6fb99ce4636..c25d0f7f428 100644
--- a/java/test/Ice/udp/Server.java
+++ b/java/test/Ice/udp/Server.java
@@ -53,7 +53,7 @@ public class Server extends test.Util.Application
initData.properties.setProperty("Ice.UDP.SndSize", "16384");
String host;
- if(initData.properties.getProperty("Ice.IPv6") == "1")
+ if(initData.properties.getProperty("Ice.IPv6").equals("1"))
{
host = "\"ff01::1:1\"";
}