aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/namestore/gnunet-namestore-fcfsd.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/namestore/gnunet-namestore-fcfsd.c b/src/namestore/gnunet-namestore-fcfsd.c
index b1f45b03a..c0b9f4da6 100644
--- a/src/namestore/gnunet-namestore-fcfsd.c
+++ b/src/namestore/gnunet-namestore-fcfsd.c
@@ -929,7 +929,13 @@ identity_cb (void *cls,
929 return; 929 return;
930 } 930 }
931 fcfs_zone_pkey = *GNUNET_IDENTITY_ego_get_private_key (ego); 931 fcfs_zone_pkey = *GNUNET_IDENTITY_ego_get_private_key (ego);
932 httpd = MHD_start_daemon (MHD_USE_DUAL_STACK | MHD_USE_DEBUG, 932
933
934 httpd = MHD_start_daemon (
935#ifdef MHD_USE_DUAL_STACK
936 MHD_USE_DUAL_STACK |
937#endif
938 MHD_USE_DEBUG,
933 (uint16_t) port, 939 (uint16_t) port,
934 NULL, NULL, 940 NULL, NULL,
935 &create_response, NULL, 941 &create_response, NULL,