summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1a477ec)
raw | patch | inline | side by side (parent: 1a477ec)
author | Sebastian Harl <sh@tokkee.org> | |
Mon, 13 Jan 2014 14:46:43 +0000 (15:46 +0100) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Mon, 13 Jan 2014 14:46:43 +0000 (15:46 +0100) |
Thanks to Marc Fournier for noticing!
src/amqp.c | patch | blob | history |
diff --git a/src/amqp.c b/src/amqp.c
index bebaea7c8e7eb4bdbbcff93684321a851fc94cbd..7de9d7f2a5b861e3e39ef59457dcae33fc4b9514 100644 (file)
--- a/src/amqp.c
+++ b/src/amqp.c
#ifdef HAVE_AMQP_SOCKET_H
# include <amqp_socket.h>
#endif
+#ifdef HAVE_AMQP_TCP_SOCKET
#if defined HAVE_DECL_AMQP_SOCKET_CLOSE && !HAVE_DECL_AMQP_SOCKET_CLOSE
/* rabbitmq-c does not currently ship amqp_socket.h
* and, thus, does not define this function. */
int amqp_socket_close(amqp_socket_t *);
#endif
+#endif
/* Defines for the delivery mode. I have no idea why they're not defined by the
* library.. */
return (status);
}
#else /* HAVE_AMQP_TCP_SOCKET */
-# define CLOSE_SOCKET close(sockfd)
+# define CLOSE_SOCKET() close(sockfd)
/* this interface is deprecated as of rabbitmq-c 0.4 */
sockfd = amqp_open_socket (CONF(conf, host), conf->port);
if (sockfd < 0)