aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-11-05 21:57:00 +0000
committerChristian Grothoff <christian@grothoff.org>2010-11-05 21:57:00 +0000
commitb863a504a58bd9fb7d1da4861c65908ac3b40608 (patch)
treea1552fc03a5a2904e6443b78cbeacc63c62649b6
parentbdc3b54372a92874c2ecb58069eac5bdfe6fcddc (diff)
downloadgnunet-b863a504a58bd9fb7d1da4861c65908ac3b40608.tar.gz
gnunet-b863a504a58bd9fb7d1da4861c65908ac3b40608.zip
fix
-rw-r--r--src/transport/plugin_transport_http.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/transport/plugin_transport_http.c b/src/transport/plugin_transport_http.c
index f70397dc5..3f484b938 100644
--- a/src/transport/plugin_transport_http.c
+++ b/src/transport/plugin_transport_http.c
@@ -41,13 +41,13 @@
41#include <curl/curl.h> 41#include <curl/curl.h>
42 42
43#if BUILD_HTTPS 43#if BUILD_HTTPS
44#define LIBGNUNET_PLUGIN_TRANSPORT_INIT libgnunet_gnunet_transport_plugin.https_init 44#define LIBGNUNET_PLUGIN_TRANSPORT_INIT libgnunet_plugin_transport_https_init
45#define LIBGNUNET_PLUGIN_TRANSPORT_DONE libgnunet_gnunet_transport_plugin.https_done 45#define LIBGNUNET_PLUGIN_TRANSPORT_DONE libgnunet_plugin_transport_https_done
46#define LIBGNUNET_PLUGIN_TRANSPORT_COMPONENT transport_https 46#define LIBGNUNET_PLUGIN_TRANSPORT_COMPONENT transport_https
47#define PROTOCOL_PREFIX "https" 47#define PROTOCOL_PREFIX "https"
48#else 48#else
49#define LIBGNUNET_PLUGIN_TRANSPORT_INIT libgnunet_gnunet_transport_plugin.http_init 49#define LIBGNUNET_PLUGIN_TRANSPORT_INIT libgnunet_plugin_transport_http_init
50#define LIBGNUNET_PLUGIN_TRANSPORT_DONE libgnunet_gnunet_transport_plugin.http_done 50#define LIBGNUNET_PLUGIN_TRANSPORT_DONE libgnunet_plugin_transport_http_done
51#define LIBGNUNET_PLUGIN_TRANSPORT_COMPONENT transport_http 51#define LIBGNUNET_PLUGIN_TRANSPORT_COMPONENT transport_http
52#define PROTOCOL_PREFIX "http" 52#define PROTOCOL_PREFIX "http"
53#endif 53#endif