Commit 2f36f65f authored by Tim M's avatar Tim M

Fixed duplicate variable declaration.

parent 2f854472
...@@ -269,7 +269,7 @@ void zmq::stream_t::identify_peer (pipe_t *pipe_) ...@@ -269,7 +269,7 @@ void zmq::stream_t::identify_peer (pipe_t *pipe_)
} }
else { else {
put_uint32 (buffer + 1, next_rid++); put_uint32 (buffer + 1, next_rid++);
blob_t identity = blob_t (buffer, sizeof buffer); identity = blob_t (buffer, sizeof buffer);
memcpy (options.identity, identity.data (), identity.size ()); memcpy (options.identity, identity.data (), identity.size ());
options.identity_size = identity.size (); options.identity_size = identity.size ();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment