From a1000a0dd6e6f56cd558fbe08143cda79f79abfc Mon Sep 17 00:00:00 2001
From: Frank van Kesteren <frank@adesys.nl>
Date: Mon, 9 Oct 2017 16:02:00 +0200
Subject: [PATCH] Fix compile error for libzmq 4.2.1 and 4.2.2 (#161)

* Fix compile error for libzmq 4.2.1 and 4.2.2

When defined ZMQ_BUILD_DRAFT_API=1, you receive an error "'on_event_handshake_succeeded' was not declared in this scope"... which is correct for versions 4.2.1 and 4.2.2.
Function was renamed from 'on_event_handshake_succeed', fixed this by updating the function name.
---
 zmq.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zmq.hpp b/zmq.hpp
index 2b6692f..f3d76fe 100644
--- a/zmq.hpp
+++ b/zmq.hpp
@@ -872,7 +872,7 @@ namespace zmq
                 on_event_handshake_failed(*event, address.c_str());
                 break;
             case ZMQ_EVENT_HANDSHAKE_SUCCEED:
-                on_event_handshake_succeeded(*event, address.c_str());
+                on_event_handshake_succeed(*event, address.c_str());
                 break;
 #endif
 #endif