mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-13 18:55:10 +01:00
Merge pull request #607 from cjuniet/master
[LIBZMQ-544] Fix compilation errors with Clang
This commit is contained in:
commit
e093bd9923
@ -264,7 +264,7 @@ int zmq::options_t::setsockopt (int option_, const void *optval_,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (optvallen_ >= 0 && optvallen_ < 256 && optval_ != NULL) {
|
if (optvallen_ > 0 && optvallen_ < 256 && optval_ != NULL) {
|
||||||
plain_username.assign ((const char *) optval_, optvallen_);
|
plain_username.assign ((const char *) optval_, optvallen_);
|
||||||
as_server = 0;
|
as_server = 0;
|
||||||
mechanism = ZMQ_PLAIN;
|
mechanism = ZMQ_PLAIN;
|
||||||
@ -278,7 +278,7 @@ int zmq::options_t::setsockopt (int option_, const void *optval_,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (optvallen_ >= 0 && optvallen_ < 256 && optval_ != NULL) {
|
if (optvallen_ > 0 && optvallen_ < 256 && optval_ != NULL) {
|
||||||
plain_password.assign ((const char *) optval_, optvallen_);
|
plain_password.assign ((const char *) optval_, optvallen_);
|
||||||
as_server = 0;
|
as_server = 0;
|
||||||
mechanism = ZMQ_PLAIN;
|
mechanism = ZMQ_PLAIN;
|
||||||
|
@ -105,4 +105,4 @@ Z85_decode (uint8_t *dest, char *string)
|
|||||||
return dest;
|
return dest;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user