Remove conflicting function definitions
- send_request - send_meta
This commit is contained in:
parent
9b3ff33dba
commit
656af8fa07
2 changed files with 1 additions and 8 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue