From 72b2f07a707724b353e9733f60cb4bade9b43966 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Mon, 11 Jan 2010 07:47:19 +0100 Subject: ZMQII-36: Chat example & forwarder broken because of changes subscribe semantics --- examples/chat/display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/chat/display.cpp') diff --git a/examples/chat/display.cpp b/examples/chat/display.cpp index d3488a2..c689352 100755 --- a/examples/chat/display.cpp +++ b/examples/chat/display.cpp @@ -36,7 +36,7 @@ int main (int argc, const char *argv []) // Initialise 0MQ infrastructure. zmq::context_t ctx (1, 1); zmq::socket_t s (ctx, ZMQ_SUB); - s.setsockopt (ZMQ_SUBSCRIBE, "*", 1); + s.setsockopt (ZMQ_SUBSCRIBE, "", 0); s.connect (address); while (true) { -- cgit v1.2.3