Commit 2256bd5b authored by Simon Giesecke's avatar Simon Giesecke Committed by Simon Giesecke

Problem: unnecessary copying of string literals

Solution: just copy the address
parent 4c3f1154
...@@ -118,14 +118,14 @@ zmq::ws_engine_t::~ws_engine_t () ...@@ -118,14 +118,14 @@ zmq::ws_engine_t::~ws_engine_t ()
void zmq::ws_engine_t::start_ws_handshake () void zmq::ws_engine_t::start_ws_handshake ()
{ {
if (_client) { if (_client) {
char protocol[21]; const char *protocol;
if (_options.mechanism == ZMQ_NULL) if (_options.mechanism == ZMQ_NULL)
strcpy (protocol, "ZWS2.0/NULL,ZWS2.0"); protocol = "ZWS2.0/NULL,ZWS2.0";
else if (_options.mechanism == ZMQ_PLAIN) else if (_options.mechanism == ZMQ_PLAIN)
strcpy (protocol, "ZWS2.0/PLAIN"); protocol = "ZWS2.0/PLAIN";
#ifdef ZMQ_HAVE_CURVE #ifdef ZMQ_HAVE_CURVE
else if (_options.mechanism == ZMQ_CURVE) else if (_options.mechanism == ZMQ_CURVE)
strcpy (protocol, "ZWS2.0/CURVE"); protocol = "ZWS2.0/CURVE";
#endif #endif
else else
assert (false); assert (false);
......
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