From 656af8fa074d3db7c14831a1023d7d438d484d5b Mon Sep 17 00:00:00 2001 From: thorkill Date: Thu, 2 Jul 2015 17:51:46 +0200 Subject: [PATCH] Remove conflicting function definitions - send_request - send_meta --- src/sptps_speed.c | 3 --- src/sptps_test.c | 6 +----- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/src/sptps_speed.c b/src/sptps_speed.c index 9819279c..d7332448 100644 --- a/src/sptps_speed.c +++ b/src/sptps_speed.c @@ -28,10 +28,7 @@ #include "ecdsagen.h" #include "sptps.h" -// Symbols necessary to link with logger.o -bool send_request(void *c, const char *msg, ...) { return false; } static struct list_t *connection_list = NULL; -bool send_meta(void *c, const char *msg , int len) { return false; } static char *logfilename = NULL; static bool do_detach = false; static struct timeval now; diff --git a/src/sptps_test.c b/src/sptps_test.c index a0445603..e8643603 100644 --- a/src/sptps_test.c +++ b/src/sptps_test.c @@ -30,13 +30,9 @@ #include "sptps.h" #include "utils.h" -// Symbols necessary to link with logger.o -bool send_request(void *c, const char *msg, ...) { return false; } -static struct list_t *connection_list = NULL; -bool send_meta(void *c, const char *msg , int len) { return false; } + static char *logfilename = NULL; static bool do_detach = false; -static struct timeval now; static bool verbose; static bool readonly;