Removed unused variables.
Found using clang -Wunused-variable
This commit is contained in:
parent
cd10a37ce5
commit
50da19addf
3 changed files with 0 additions and 9 deletions
|
@ -28,11 +28,6 @@
|
||||||
#include "ecdsagen.h"
|
#include "ecdsagen.h"
|
||||||
#include "sptps.h"
|
#include "sptps.h"
|
||||||
|
|
||||||
static struct list_t *connection_list = NULL;
|
|
||||||
static char *logfilename = NULL;
|
|
||||||
static bool do_detach = false;
|
|
||||||
static struct timeval now;
|
|
||||||
|
|
||||||
static bool send_data(void *handle, uint8_t type, const void *data, size_t len) {
|
static bool send_data(void *handle, uint8_t type, const void *data, size_t len) {
|
||||||
int fd = *(int *)handle;
|
int fd = *(int *)handle;
|
||||||
send(fd, data, len, 0);
|
send(fd, data, len, 0);
|
||||||
|
|
|
@ -31,9 +31,6 @@
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
|
|
||||||
|
|
||||||
static char *logfilename = NULL;
|
|
||||||
static bool do_detach = false;
|
|
||||||
|
|
||||||
static bool verbose;
|
static bool verbose;
|
||||||
static bool readonly;
|
static bool readonly;
|
||||||
static bool writeonly;
|
static bool writeonly;
|
||||||
|
|
|
@ -70,7 +70,6 @@ static int result;
|
||||||
bool force = false;
|
bool force = false;
|
||||||
bool tty = true;
|
bool tty = true;
|
||||||
bool confbasegiven = false;
|
bool confbasegiven = false;
|
||||||
static bool netnamegiven = false;
|
|
||||||
char *scriptinterpreter = NULL;
|
char *scriptinterpreter = NULL;
|
||||||
char *scriptextension = "";
|
char *scriptextension = "";
|
||||||
static char *prompt;
|
static char *prompt;
|
||||||
|
|
Loading…
Reference in a new issue