Remove conflicting function definitions

- send_request
- send_meta
This commit is contained in:
thorkill 2015-07-02 17:51:46 +02:00
parent 9b3ff33dba
commit 656af8fa07
2 changed files with 1 additions and 8 deletions

View file

@ -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;

View file

@ -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;