From 6ce464414bb453a40abadaa9d79389e5e3282fda Mon Sep 17 00:00:00 2001 From: Matt Arsenault Date: Tue, 1 Jan 2013 04:26:04 -0500 Subject: [PATCH] Fix typos --- src/socket_base.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/socket_base.cpp b/src/socket_base.cpp index 6bf550cf..562d4b30 100644 --- a/src/socket_base.cpp +++ b/src/socket_base.cpp @@ -664,7 +664,7 @@ int zmq::socket_base_t::send (msg_t *msg_, int flags_) return -1; // Compute the time when the timeout should occur. - // If the timeout is infite, don't care. + // If the timeout is infinite, don't care. int timeout = options.sndtimeo; uint64_t end = timeout < 0 ? 0 : (clock.now_ms () + timeout); @@ -746,7 +746,7 @@ int zmq::socket_base_t::recv (msg_t *msg_, int flags_) } // Compute the time when the timeout should occur. - // If the timeout is infite, don't care. + // If the timeout is infinite, don't care. int timeout = options.rcvtimeo; uint64_t end = timeout < 0 ? 0 : (clock.now_ms () + timeout);